AcWing 29. 删除链表中重复的节点
原题链接
中等
作者:
ls131
,
2020-05-03 13:35:49
,
所有人可见
,
阅读 407
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* deleteDuplication(ListNode* head) {
auto dummy= new ListNode(-1);
dummy->next=head;
auto p=dummy;
while(p->next){
auto q=p->next;
while(q->next&&q->next->val==p->next->val) q=q->next;
if(q==p->next) p=q;
else p->next=q->next;
}
return dummy->next;
}
};