摘要: 创建一个节点类 package com.wxw.Link; public class Node { private String nodeName; private Node next; public Node(String nodeName){ this.nodeName = nodeName; } public Node getNext(){ return this.next; } ... 阅读全文
posted @ 2013-07-06 15:13 wxwall 阅读(152) 评论(0) 推荐(0) 编辑