forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
removeDuplicatesFromSortedList.cpp
69 lines (58 loc) · 1.46 KB
/
removeDuplicatesFromSortedList.cpp
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Source : https://oj.leetcode.com/problems/remove-duplicates-from-sorted-list/
// Author : Hao Chen
// Date : 2014-06-21
/**********************************************************************************
*
* Given a sorted linked list, delete all duplicates such that each element appear only once.
*
* For example,
* Given 1->1->2, return 1->2.
* Given 1->1->2->3->3, return 1->2->3.
*
*
**********************************************************************************/
#include <stdio.h>
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
ListNode *deleteDuplicates(ListNode *head) {
for(ListNode *p=head; p && p->next; ){
if (p->val == p->next->val){
p->next = p->next->next;
continue;
}
p=p->next;
}
return head;
}
void printList(ListNode* h)
{
while(h!=NULL){
printf("%d ", h->val);
h = h->next;
}
printf("\n");
}
ListNode* createList(int a[], int n)
{
ListNode *head=NULL, *p=NULL;
for(int i=0; i<n; i++){
if (head == NULL){
head = p = new ListNode(a[i]);
}else{
p->next = new ListNode(a[i]);
p = p->next;
}
}
return head;
}
int main()
{
int a[]={1,1,2,3,3};
int b[]={1,1,1};
printList(deleteDuplicates(createList(a, sizeof(a)/sizeof(int))));
printList(deleteDuplicates(createList(b, sizeof(b)/sizeof(int))));
return 0;
}