摘要: public class LinkedNode { Integer id; LinkedNode next; public LinkedNode(Integer id) { this.id = id; } // 打印链表 public void print(){ System.out.print(t 阅读全文
posted @ 2020-02-10 16:30 gaopengpy 阅读(1065) 评论(0) 推荐(0) 编辑