摘要: 今天简单学习了栈的基本操作和实现,其中共享数组非常有意思。 public class MyStack { private int maxSize; private long[] stackArray; private int top; public MyStack(int s) { maxSize 阅读全文
posted @ 2023-09-21 21:01 yblll 阅读(14) 评论(0) 推荐(0)