-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDesignLinkList_707.java
121 lines (102 loc) · 3.3 KB
/
DesignLinkList_707.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
class MyLinkedList {
private Node header;
/** Initialize your data structure here. */
public MyLinkedList() {
header = new Node(-1);
header.next = null;
}
/** Get the value of the index-th node in the linked list. If the index is invalid, return -1. */
public int get(int index) {
int i = 0;
Node tempNode = header.next;
while (tempNode != null) {
if (i == index) {
return tempNode.value;
}
i++;
tempNode = tempNode.next;
}
return -1;
}
/** Add a node of value val before the first element of the linked list. After the insertion, the new node will be the first node of the linked list. */
public void addAtHead(int val) {
Node node = new Node(val);
node.next = header.next;
header.next = node;
}
/** Append a node of value val to the last element of the linked list. */
public void addAtTail(int val) {
Node preTail = header;
Node tail = header.next;
while (tail != null) {
preTail = tail;
tail = tail.next;
}
Node node = new Node(val);
preTail.next = node;
node.next = null;
}
/** Add a node of value val before the index-th node in the linked list. If index equals to the length of linked list, the node will be appended to the end of linked list. If index is greater than the length, the node will not be inserted. */
public void addAtIndex(int index, int val) {
Node temp = header.next;
if (temp == null && index != 0) {
return;
}
int i = 0;
int insertIndex = index - 1 < 0 ? 0 : index - 1;
while(temp != null && insertIndex != i) {
temp = temp.next;
i++;
}
if (temp == null) {
temp = header;
}
Node node = new Node(val);
node.next = temp.next;
temp.next = node;
}
/** Delete the index-th node in the linked list, if the index is valid. */
public void deleteAtIndex(int index) {
if (index < 0) {
return;
}
int deleteIndex = index - 1 < 0 ? 0 : index - 1;
int startIndex = 0;
Node temp = header.next;
if (temp == null) {
return;
}
while (temp != null && startIndex != deleteIndex) {
temp = temp.next;
startIndex++;
}
if (temp != null) {
Node nextNode = temp.next;
Node nextNextNode = null;
if (temp.next != null) {
nextNextNode = temp.next.next;
}
temp.next = nextNextNode;
if (nextNode != null) {
nextNode.next = null;
}
nextNode = null;
}
}
private class Node {
int value;
Node next;
public Node(int val) {
value = val;
}
}
}
/**
* 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);
*/