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

溫馨提示×

java怎么實現鏈表結構

小億
82
2023-12-15 02:34:13
欄目: 編程語言

在Java中,可以通過自定義類實現鏈表結構。以下是一個簡單的鏈表實現示例:

public class Node {
    private int data;
    private Node next;

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

    public int getData() {
        return data;
    }

    public Node getNext() {
        return next;
    }

    public void setNext(Node next) {
        this.next = next;
    }
}

public class LinkedList {
    private Node head;

    public LinkedList() {
        this.head = null;
    }

    public void add(int data) {
        Node newNode = new Node(data);
        if (head == null) {
            head = newNode;
        } else {
            Node current = head;
            while (current.getNext() != null) {
                current = current.getNext();
            }
            current.setNext(newNode);
        }
    }

    public void print() {
        Node current = head;
        while (current != null) {
            System.out.print(current.getData() + " ");
            current = current.getNext();
        }
        System.out.println();
    }

    public static void main(String[] args) {
        LinkedList linkedList = new LinkedList();
        linkedList.add(1);
        linkedList.add(2);
        linkedList.add(3);
        linkedList.print();
    }
}

該示例中,Node類表示鏈表中的節點,包含一個整數數據和一個指向下一個節點的指針。LinkedList類表示鏈表,包含一個指向頭節點的指針和一些基本操作方法,如添加節點和打印鏈表。在main方法中,創建一個LinkedList對象,并添加一些節點,然后打印鏈表中的數據。輸出結果為:1 2 3。

0
武冈市| 铜梁县| 高州市| 崇仁县| 长丰县| 安陆市| 阿拉善左旗| 柯坪县| 常熟市| 自治县| 鹤壁市| 武宣县| 洱源县| 精河县| 囊谦县| 顺平县| 卢龙县| 屯留县| 沂南县| 红河县| 衡山县| 婺源县| 邯郸县| 勐海县| 宝应县| 襄垣县| 广宁县| 连云港市| 红桥区| 汕头市| 蛟河市| 太谷县| 汉川市| 秦安县| 镶黄旗| 宁阳县| 永昌县| 开化县| 中江县| 伊宁市| 游戏|