2016年10月18日
摘要: //链表节点的定义 public class Node { int data;//数据域 Node next;//递归定义 public Node(int data) { this.data = data; this.next=null; } public static void main(String[] args) { Node a=new Node... 阅读全文
posted @ 2016-10-18 13:50 天之城 阅读(118) 评论(0) 推荐(0) 编辑