LeetCodeAnimation/notes/LeetCode第237号问题:删除链表中的节点.md
程序员吴师兄 5dee53d957 更换图片地址
2019-11-14 11:00:28 +08:00

79 lines
2.1 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# LeetCode 237 号问题删除链表中的节点
> 本文首发于公众号五分钟学算法[图解 LeetCode ](<https://github.com/MisterBooo/LeetCodeAnimation>)系列文章之一。
>
> 个人网站[https://www.cxyxiaowu.com](https://www.cxyxiaowu.com)
题目来源于 LeetCode 上第 237 号问题删除链表中的节点题目难度为 Easy目前通过率为 72.6%
### 题目描述
请编写一个函数使其可以删除某个链表中给定的非末尾节点你将只被给定要求被删除的节点
现有一个链表 -- head = [4,5,1,9]它可以表示为:
![](https://blog-1257126549.cos.ap-guangzhou.myqcloud.com/blog/uv8bw.png)
**示例 1:**
```
输入: head = [4,5,1,9], node = 5
输出: [4,1,9]
解释: 给定你链表中值为 5 的第二个节点那么在调用了你的函数之后该链表应变为 4 -> 1 -> 9.
```
**示例 2:**
```
输入: head = [4,5,1,9], node = 1
输出: [4,5,9]
解释: 给定你链表中值为 1 的第三个节点那么在调用了你的函数之后该链表应变为 4 -> 5 -> 9.
```
**说明:**
- 链表至少包含两个节点
- 链表中所有节点的值都是唯一的
- 给定的节点为非末尾节点并且一定是链表中的一个有效节点
- 不要从你的函数中返回任何结果
### 题目解析
此题注意的点是没有给我们链表的起点只给我们了一个要删的节点与以往处理的情况稍许不同
**这道题的处理方法是先把当前节点的值用下一个节点的值覆盖然后我们删除下一个节点即可**
### 动画描述
![](https://blog-1257126549.cos.ap-guangzhou.myqcloud.com/blog/1navy.gif)
### 代码实现
```
class Solution {
public:
void deleteNode(ListNode* node) {
if (node == NULL) return;
if (node->next == NULL) {
delete node;
node = NULL;
return;
}
node->val = node->next->val;
ListNode *delNode = node->next;
node->next = delNode->next;
delete delNode;
}
};
```
![](https://blog-1257126549.cos.ap-guangzhou.myqcloud.com/blog/f5g8p.png)