摘要: public class Stack { private int maxSize=16; private int top; private int[] arr=null; public Stack(int maxSize) { if(maxSize<1){ throw new RuntimeExce 阅读全文
posted @ 2020-09-03 10:16 yangxiaohui227 阅读(194) 评论(0) 推荐(0)