摘要: 数据结构 一、Stack 1.1 Java API Deque stack = new ArrayDeque<>(); // 或者是LinkedList<>() // @deprecated Stack stack = new Stack(); stack.push(); stack.pop(); 阅读全文
posted @ 2021-11-13 23:36 __Helios 阅读(66) 评论(0) 推荐(0) 编辑