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

溫馨提示×

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
宜川县| 泽库县| 乳山市| 肥城市| 新疆| 沂水县| 兴业县| 郑州市| 浦东新区| 达州市| 七台河市| 广德县| 天祝| 静海县| 庄河市| 定日县| 顺平县| 三台县| 永定县| 炉霍县| 九龙城区| 囊谦县| 固阳县| 两当县| 井研县| 华宁县| 新郑市| 安顺市| 宁陕县| 白银市| 会理县| 岑溪市| 上杭县| 乌鲁木齐市| 丘北县| 富顺县| 靖江市| 舟山市| 黄平县| 酉阳| 安图县|