加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fff.java 856 Bytes
一键复制 编辑 原始数据 按行查看 历史
辉少 提交于 2020-11-18 09:17 . 作业
public class fff {
private final int[] stack;
private int top;//指向新进来的元素的前面
public fff(int size) {//构造方法
stack = new int[size];
this.top = 0;
}
public void push(int item) throws Exception {//往栈中添加元素
if (top > stack.length) {
throw new Exception("StackOverflowError");
} else {
stack[top] = item;
top++;
}
}
public int pop() throws Exception {//栈顶元素出栈
if (top == 0) {
throw new Exception("StackEmpty");
} else {
return stack[--top];
}
}
public int peek() throws Exception {//查看栈顶元素
if (top == 0) {
throw new Exception("StackEmpty");
} else {
return stack[top - 1];
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化