2 Star 0 Fork 0

xinanXu/myleetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
LC2095.cpp 808 Bytes
一键复制 编辑 原始数据 按行查看 历史
xinanXu 提交于 2023-03-06 17:18 . 2095. 删除链表的中间节点
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* deleteMiddle(ListNode* head) {
if (!head) return nullptr;
if (!head->next) return nullptr;
if (!head->next->next) {
head->next = nullptr;
return head;
}
ListNode *p1 = head->next->next, *p2 = head;
while (p1) {
p1 = p1->next;
if (p1) p1 = p1->next;
else break;
p2 = p2->next;
}
p2->next = p2->next->next;
return head;
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/DearAtri/myleetcode.git
git@gitee.com:DearAtri/myleetcode.git
DearAtri
myleetcode
myleetcode
master

搜索帮助