⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stackofintegers.java

📁 java程序设计导论(daniel liang著) 所有偶数课后习题答案
💻 JAVA
字号:
public class StackOfIntegers {  private int[] elements;  private int size;  /** Construct a stack with the default capacity 16 */  public StackOfIntegers() {    this(16);  }  /** Construct a stack with the specified maximum capacity */  public StackOfIntegers(int capacity) {    elements = new int[capacity];  }  /** Push a new integer into the top of the stack */  public int push(int value) {    if (size >= elements.length) {      int[] temp = new int[elements.length * 2];      System.arraycopy(elements, 0, temp, 0, elements.length);      elements = temp;    }    return elements[size++] = value;  }  /** Return and remove the top element from the stack */  public int pop() {    return elements[--size];  }  /** Return the top element from the stack */  public int peek() {    return elements[size - 1];  }  /** Test whether the stack is empty */  public boolean empty() {    return size == 0;  }  /** Return the number of elements in the stack */  public int getSize() {    return size;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -