摘要: /** * @author luochengcheng * 定义一个单链表 */ class Node { //变量 private int record; //指向下一个对象 private Node nextNode; ... 阅读全文
posted @ 2015-03-04 19:10 心灵的呼声 阅读(744) 评论(0) 推荐(0) 编辑