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

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

關于鏈表:刪除指定元素、在指定位置后插入或刪除元素

發布時間:2020-08-03 22:25:04 來源:網絡 閱讀:380 作者:涼白開dream 欄目:編程語言

說明:思路中寫的是偽代碼,為了表達意思。

一,刪除鏈表中與val相等的結點

需要兩個結點 cur和prev(作為cur的前驅結點)
遍歷整個鏈表,與給定的val作比較,
如果相等:prev.next=cur.next;
如果不相等:cur=cur.next;

二、在指定POS后插入、刪除結點
插入:pos.next=node;
node.next=pos.next;
刪除:pos.next=pos.next.next

代碼如下:

```class Node {
int val;
Node next = null;

Node(int val) {
    this.val = val;
}

public String toString() {
    return String.format("Node(%d)", val);
}

}

class Solution {
public Node removeElements(Node head, int val) {
Node result = null;
Node last = null; // 記錄目前 result 中的最后一個結點

    Node cur = head;
    while (cur != null) {
        if (cur.val == val) {
            cur = cur.next;
            continue;
        }

        Node next = cur.next;

        cur.next = null;
        if (result == null) {
            result = cur;
        } else {
            last.next = cur;
        }

        last = cur;

        cur = next;
    }

    return result;
}

}

public class MyLinkedList {
public static void main(String[] args) {
Node head = new Node(1);
head.next = new Node(2);
head.next.next = new Node(3);//pos
head.next.next.next = new Node(4);

    Node pos = head.next.next;
    pushAfter(pos, 100);//在pos之后入100

    // 1, 2, 3, 100, 4
}

private static void pushAfter(Node pos, int val) {
    Node node = new Node(val);

    node.next = pos.next;
    pos.next = node;
}

private static void popAfter(Node pos) {
    pos.next = pos.next.next;
}

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

剑阁县| 沛县| 宁河县| 海伦市| 文昌市| 镇雄县| 溧阳市| 长岭县| 内黄县| 丰宁| 叙永县| 高青县| 苏州市| 梁河县| 汶上县| 华宁县| 龙岩市| 揭阳市| 南郑县| 城市| 灵璧县| 利川市| 伊吾县| 突泉县| 响水县| 滁州市| 樟树市| 旌德县| 虹口区| 冷水江市| 达孜县| 会泽县| 曲靖市| 汉中市| 渭源县| 祥云县| 金阳县| 南京市| 永靖县| 乐清市| 蓝田县|