91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java怎么遍歷單鏈表

小億
102
2023-11-16 09:10:11
欄目: 編程語言

在Java中,遍歷單鏈表可以使用循環或遞歸的方式。以下是使用循環遍歷單鏈表的示例代碼:

class Node {
    int data;
    Node next;

    Node(int data) {
        this.data = data;
        this.next = null;
    }
}

class LinkedList {
    Node head;

    public void traverse() {
        Node current = head;

        while (current != null) {
            System.out.print(current.data + " ");
            current = current.next;
        }
    }
}

public class Main {
    public static void main(String[] args) {
        LinkedList list = new LinkedList();

        list.head = new Node(1);
        Node second = new Node(2);
        Node third = new Node(3);

        list.head.next = second;
        second.next = third;

        list.traverse();
    }
}

以上代碼創建了一個簡單的單鏈表,并使用traverse()方法遍歷并打印鏈表中的每個元素。

注意:在實際應用中,可能需要在鏈表中添加其他操作,如插入、刪除、查找等。

0
岳阳市| 临泉县| 凯里市| 广灵县| 乐陵市| 五常市| 华坪县| 遂昌县| 溧水县| 小金县| 宁阳县| 札达县| 图片| 赣州市| 洛川县| 四会市| 乌兰县| 钦州市| 嵊泗县| 榕江县| 鲁甸县| 广宁县| 竹北市| 双柏县| 上林县| 西乌珠穆沁旗| 新源县| 迭部县| 都兰县| 五家渠市| 郓城县| 友谊县| 吉水县| 彭水| 泸溪县| 珲春市| 汉沽区| 青河县| 临湘市| 容城县| 浮梁县|