亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java鏈表怎么刪除某一個節點

小億
170
2024-01-23 16:13:52
欄目: 編程語言

在Java中,可以使用LinkedList類或者自定義鏈表類來實現鏈表,并且刪除某一個節點可以按照以下步驟進行操作:

  1. 首先找到要刪除的節點,可以使用循環遍歷鏈表,直到找到要刪除的節點為止。

  2. 找到要刪除的節點后,將該節點的前一個節點的next指針指向要刪除節點的下一個節點。

  3. 釋放要刪除的節點的內存空間,即將該節點的引用置為null。

下面是一個示例代碼,演示如何刪除鏈表中的某一個節點:

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

class LinkedList {
    Node head;
    
    // 在鏈表末尾添加節點
    public void add(int data) {
        Node newNode = new Node(data);
        
        if (head == null) {
            head = newNode;
        } else {
            Node current = head;
            while (current.next != null) {
                current = current.next;
            }
            current.next = newNode;
        }
    }
    
    // 刪除指定節點
    public void delete(int data) {
        Node current = head;
        Node previous = null;
        
        while (current != null) {
            if (current.data == data) {
                if (previous == null) {
                    // 要刪除的節點是頭節點
                    head = current.next;
                } else {
                    previous.next = current.next;
                }
                current = null; // 釋放內存空間
                return;
            }
            previous = current;
            current = current.next;
        }
    }
    
    // 打印鏈表
    public void display() {
        Node current = head;
        while (current != null) {
            System.out.print(current.data + " ");
            current = current.next;
        }
        System.out.println();
    }
}

public class Main {
    public static void main(String[] args) {
        LinkedList list = new LinkedList();
        list.add(1);
        list.add(2);
        list.add(3);
        list.display(); // 輸出:1 2 3
        
        list.delete(2);
        list.display(); // 輸出:1 3
    }
}

在上面的示例代碼中,首先創建了一個自定義的LinkedList類,其中Node類表示鏈表的節點。在delete方法中,首先使用兩個指針current和previous來遍歷鏈表,找到要刪除的節點,然后修改指針的指向來刪除節點。最后,在delete方法中使用current = null來釋放內存空間。

0
中卫市| 通渭县| 屏边| 仪征市| 长海县| 古丈县| 墨脱县| 遵义县| 金堂县| 林口县| 阿勒泰市| 横峰县| 娱乐| 宜城市| 隆尧县| 崇左市| 广水市| 丁青县| 通化市| 乐昌市| 改则县| 隆尧县| 明溪县| 通城县| 信阳市| 陆河县| 谷城县| 通许县| 土默特左旗| 三明市| 卓尼县| 达孜县| 惠水县| 呈贡县| 罗田县| 枞阳县| 涿鹿县| 锦屏县| 石家庄市| 腾冲县| 湘乡市|