摘要: class Node { Node next = null; int data; public Node(int data){ this.data = data; }}public class MyLinkedList { Node head = null; public void addNode( 阅读全文
posted @ 2018-08-01 22:33 fuyusong 阅读(131) 评论(0) 推荐(0) 编辑