-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathLeetCode#68.cc
41 lines (37 loc) · 995 Bytes
/
LeetCode#68.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode *deleteDuplicates(ListNode *head) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
if(head==NULL) return NULL;
ListNode* ret=NULL, *tail;
int cnt=1;
while(head){
if(head->next==NULL || head->val != head->next->val){
if(cnt==1){
if(ret==NULL){
ret = tail = head;
}
else{
tail->next = head;
tail = head;
}
}
cnt=1;
}
else cnt++;
head = head->next;
}
if(ret)
tail->next = NULL;
return ret;
}
};