摘要: 1 public class Stack { 2 3 public static void main(String args[]) 4 { 5 ArrayTest1 arr = new ArrayTest1(10); 6 7 8 arr.push(8); 9 arr.push(7);10 arr.push(6);11 arr.push(5);12 13 while(!arr.isEmpty())14 {1... 阅读全文
posted @ 2014-04-11 10:43 一叶落香 阅读(883) 评论(0) 推荐(0) 编辑