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

溫馨提示×

溫馨提示×

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

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

leetCode 237. Delete Node in a Linked List 鏈表

發布時間:2020-07-19 19:52:58 來源:網絡 閱讀:332 作者:313119992 欄目:編程語言

237. Delete Node in a Linked List

Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.

Supposed the linked list is 1 -> 2 -> 3 -> 4 and you are given the third node with value 3, the linked list should become 1 -> 2 -> 4after calling your function.

題目大意:

給定單鏈表中的一個節點,刪除這個節點。

思路:

由于不能知道這個節點的前一節點,所以可以采用將當前要刪除的節點的信息與這一節點的下一節點的信息交換。然后刪除下一個節點。這樣就實現了刪除這個節點。

代碼如下:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    void deleteNode(ListNode* node) {
        if(NULL == node)
            return ;
        ListNode * next = node->next;
        node->val = next->val;
        node->next = next->next;
        delete next;
    }
};

題目不是很好懂。

2016-08-12 21:05:17

向AI問一下細節

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

AI

屯留县| 蓝山县| 威海市| 龙陵县| 茶陵县| 宁波市| 布拖县| 古蔺县| 海晏县| 嘉禾县| 泗水县| 娄烦县| 四川省| 奎屯市| 万载县| 福海县| 柘荣县| 纳雍县| 朝阳市| 颍上县| 大英县| 万宁市| 临夏县| 贡山| 北海市| 堆龙德庆县| 邢台市| 揭西县| 浦东新区| 定结县| 盐池县| 香河县| 公主岭市| 东乡| 精河县| 宜兰市| 贺州市| 富锦市| 承德市| 洪洞县| 滕州市|