-
Notifications
You must be signed in to change notification settings - Fork 0
/
200122-1.cpp
80 lines (74 loc) · 1.39 KB
/
200122-1.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
69
70
71
72
73
74
75
76
77
78
79
80
// https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list/
#include <cstdio>
#include <initializer_list>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
ListNode* init(initializer_list<int> a) {
ListNode node(0);
ListNode* p = &node;
for (auto e : a) {
p->next = new ListNode(e);
p = p->next;
}
return node.next;
}
void release(ListNode* p) {
if (p) release(p->next);
delete p;
}
void print(ListNode* p, bool hasEndl = true) {
if (p) {
printf("%d ", p->val);
if (p->next) print(p->next, false);
}
if (hasEndl) printf("\n");
}
class Solution {
public:
ListNode* deleteDuplicates(ListNode* head) {
if (!head || !head->next) return head;
for (ListNode* p = head; p;) {
if (p->next && p->val == p->next->val) {
ListNode* next = p->next->next;
delete p->next;
p->next = next;
} else {
p = p->next;
}
}
return head;
}
};
int main()
{
Solution s;
{
ListNode* p = init({1,2,3,3,4,4,5});
p = s.deleteDuplicates(p);
print(p); // answer: [1,2,5]
release(p);
}
{
ListNode* p = init({1,1,1,2,3});
p = s.deleteDuplicates(p);
print(p); // answer: [2,3]
release(p);
}
{
ListNode* p = init({});
p = s.deleteDuplicates(p);
print(p); // answer: []
release(p);
}
{
ListNode* p = init({1,1});
p = s.deleteDuplicates(p);
print(p); // answer: []
release(p);
}
return 0;
}