您好,登錄后才能下訂單哦!
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 -> 4
after calling your function.
題目大意:
給定單鏈表中的一個節(jié)點,刪除這個節(jié)點。
思路:
由于不能知道這個節(jié)點的前一節(jié)點,所以可以采用將當(dāng)前要刪除的節(jié)點的信息與這一節(jié)點的下一節(jié)點的信息交換。然后刪除下一個節(jié)點。這樣就實現(xiàn)了刪除這個節(jié)點。
代碼如下:
/** * 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
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。