CS计算机代考程序代写 public interface Stack {程序代写 CS代考 public interface Stack { boolean isEmpty(); E peek(); E pop(); void push( E element); }