forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution2.java
76 lines (69 loc) · 1.54 KB
/
Solution2.java
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
class MyLinkedList {
private int[] e = new int[1010];
private int[] ne = new int[1010];
private int head = -1;
private int idx;
private int cnt;
public MyLinkedList() {
}
public int get(int index) {
if (index < 0 || index >= cnt) {
return -1;
}
int i = head;
while (index-- > 0) {
i = ne[i];
}
return e[i];
}
public void addAtHead(int val) {
e[idx] = val;
ne[idx] = head;
head = idx++;
++cnt;
}
public void addAtTail(int val) {
addAtIndex(cnt, val);
}
public void addAtIndex(int index, int val) {
if (index > cnt) {
return;
}
if (index <= 0) {
addAtHead(val);
return;
}
int i = head;
while (--index > 0) {
i = ne[i];
}
e[idx] = val;
ne[idx] = ne[i];
ne[i] = idx++;
++cnt;
}
public void deleteAtIndex(int index) {
if (index < 0 || index >= cnt) {
return;
}
--cnt;
if (index == 0) {
head = ne[head];
return;
}
int i = head;
while (--index > 0) {
i = ne[i];
}
ne[i] = ne[ne[i]];
}
}
/**
* 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);
*/