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