单链表--删除链表中的指定结点
Posted hehesunshine
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单链表--删除链表中的指定结点相关的知识,希望对你有一定的参考价值。
1、注意单链表中找到要删除的结点但无法找到它的前一结点,有个简便方法!!!
2、
1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *next; 6 * ListNode(int x) : val(x), next(NULL) {} 7 * }; 8 */ 9 class Solution { 10 public: 11 void deleteNode(ListNode* node) { 12 node->val=node->next->val; 13 node->next=node->next->next; 14 } 15 };
以上是关于单链表--删除链表中的指定结点的主要内容,如果未能解决你的问题,请参考以下文章