摘要: public class LinkedStack { private static class Node { U item; Node next; Node() { item = null; next = null; } Node(U item, Node next) { this.item = it... 阅读全文
posted @ 2017-09-01 10:08 guodaxia 阅读(151) 评论(0) 推荐(0) 编辑