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