Remove Duplicates from Sorted List II
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.
For example,
Given 1->2->3->3->4->4->5
, return 1->2->5
.
Given 1->1->1->2->3
, return 2->3
.
Code:
class Solution { public: ListNode *deleteDuplicates(ListNode *head) { if(head==NULL) return head; ListNode *start=new ListNode(0); start->next=head; ListNode *pre=start; ListNode *cur=head; ListNode *nex=head->next; bool detect=false; while(nex){ if(nex->val==cur->val){ detect=true; cur->next=nex->next; delete nex; } else if(detect){ detect=false; pre->next=cur->next; delete cur; cur=nex; } else{ pre=cur; cur=nex; } nex=nex->next; } if(detect){ pre->next=NULL; delete cur; } head=start->next; delete start; return head; } };
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步