中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
丹凤县| 新河县| 二连浩特市| 崇仁县| 驻马店市| 那曲县| 丁青县| 仁寿县| 南漳县| 安吉县| 化隆| 瑞金市| 长治县| 延边| 自贡市| 马鞍山市| 临沧市| 闸北区| 云阳县| 镇沅| 灯塔市| 六安市| 白玉县| 云南省| 墨竹工卡县| 扬州市| 政和县| 林甸县| 新民市| 抚宁县| 塔城市| 彰化县| 伊宁市| 始兴县| 沭阳县| 崇文区| 平罗县| 莱阳市| 阿克| 五莲县| 都昌县|