java用数组实现栈代码
程序员文章站
2022-07-10 20:30:05
...
public class MyStack {
private Object[] arr =new Object[5];
private int index = -1;
public boolean push(Object obj) {
if (index+1>=arr.length)
return false;
arr[++index] = obj;
return true;
}
public Object pop() {
if (index<0)
return null;
return arr[index--];
}
}
上一篇: 剑指offer:使用两个栈实现队列