摘要: class Node{ Object data; Node next; public Node(){ } public Node(Object data){ this.data = data; this.next = null; } public void add(Node element){ th 阅读全文
posted @ 2019-12-25 11:02 邱龙海 阅读(283) 评论(2) 推荐(2)