摘要:
class Link{ class Node{ private String name; private Node next; public Node(String name){ this.name = name ; } public String getName(){ return this.name; } public Node getNext(){ return this.next; } public void addNode(Node newNode){ if (this.next == null){ 阅读全文
posted @ 2009-12-22 22:54
Jesuca
阅读(722)
评论(0)
推荐(0)
浙公网安备 33010602011771号