-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
/
Copy pathSolution.cpp
64 lines (57 loc) · 1.28 KB
/
Solution.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
class MyLinkedList {
private:
ListNode* dummy = new ListNode();
int cnt = 0;
public:
MyLinkedList() {
}
int get(int index) {
if (index < 0 || index >= cnt) {
return -1;
}
auto cur = dummy->next;
while (index--) {
cur = cur->next;
}
return cur->val;
}
void addAtHead(int val) {
addAtIndex(0, val);
}
void addAtTail(int val) {
addAtIndex(cnt, val);
}
void addAtIndex(int index, int val) {
if (index > cnt) {
return;
}
auto pre = dummy;
while (index-- > 0) {
pre = pre->next;
}
pre->next = new ListNode(val, pre->next);
++cnt;
}
void deleteAtIndex(int index) {
if (index >= cnt) {
return;
}
auto pre = dummy;
while (index-- > 0) {
pre = pre->next;
}
auto t = pre->next;
pre->next = t->next;
t->next = nullptr;
--cnt;
}
};
/**
* Your MyLinkedList object will be instantiated and called as such:
* MyLinkedList* obj = new MyLinkedList();
* int param_1 = obj->get(index);
* obj->addAtHead(val);
* obj->addAtTail(val);
* obj->addAtIndex(index,val);
* obj->deleteAtIndex(index);
*/