LeetCode 237 删除链表中的节点[链表] HERODING的LeetCode之路
Posted HERODING23
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 237 删除链表中的节点[链表] HERODING的LeetCode之路相关的知识,希望对你有一定的参考价值。
解题思路:
这道题目属实有些坑,因为只是传入了需要删除的节点的指针,但是没有原链表!所以这里只能够对需要删除节点进行操作了,我们知道需要删除的节点不是末尾,那好办了,直接伪装成下一个,并把他干掉,那么就完成了删除,代码如下:
/**
* 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) {
// 我伪装成下一个
node -> val = node -> next -> val;
// 我把下一个吃了
node -> next = node -> next -> next;
}
};
/*作者:heroding
链接:https://leetcode-cn.com/problems/delete-node-in-a-linked-list/solution/c-zhi-ru-he-da-ru-di-ren-nei-bu-by-herod-js39/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。*/
以上是关于LeetCode 237 删除链表中的节点[链表] HERODING的LeetCode之路的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode刷题100天—237. 删除链表中的节点(链表)—day01