摘要:
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){ 阅读全文