Java 遍历链表

原创
2019/07/08 09:10
阅读数 2.1K
class Node {
    String data = null; //链表存储的数据
    Node next = null; //下一个节点
 
    public Node (String data) {
        this.data = data;
    }
 
    public void setNext(Node next) {
        this.next = next;
    }
 
    public Node getNext() {
        return next;
    }
 
    public String getData() {
        return data;
    }
}

遍历链表
public static void getDataByLoop(Node node){
    while (node != null) {
    System.out.println(node.getData());
    node = node.getNext();
    }
}

 

展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
0 收藏
0
分享
返回顶部
顶部