-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSinglyLinkedList.java
More file actions
322 lines (247 loc) · 6.06 KB
/
SinglyLinkedList.java
File metadata and controls
322 lines (247 loc) · 6.06 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
package dataStructures.singlyLinkedList;
public class SinglyLinkedList {
public SinglyLinkedListNode head;
/**
* attach new node to the end of the list
* @param data
* @return head
* @time complexity O(1)
* @space complexity O(1)
*/
public SinglyLinkedListNode append(int data) {
SinglyLinkedListNode node = new SinglyLinkedListNode();
if (head == null) {
head = node;
return head;
}
node.data = data;
node.next = head;
head = node;
return head;
}
/**
* attach new node to the head and of the list
*
* @param data
* @return head
* @time complexity O(n)
* @space complexity O(1)
*/
public SinglyLinkedListNode preppend(int data) {
SinglyLinkedListNode node = new SinglyLinkedListNode();
SinglyLinkedListNode current = head;
if (head == null) {
head = node;
return head;
}
while (current.next != null) {
current = current.next;
}
node.data = data;
current.next = node;
return head;
}
/**
* reverse current singly linked list
*
* @param head
* @return reversed linked list
* @time complexity O(n^2)
* @space complexity O(n)
*/
public void reverse() {
SinglyLinkedListNode curr = new SinglyLinkedListNode();
SinglyLinkedListNode res = new SinglyLinkedListNode();
res = null;
curr = head;
while (curr != null) {
head = curr;
while (head != null) {
if (head.data == curr.data && this.length(head) == this.length(curr)) {
SinglyLinkedListNode r = new SinglyLinkedListNode();
r.data = head.data;
r.next = res;
res = r;
}
head = head.next;
}
curr = curr.next;
}
head = res;
}
/**
* delete some position from linked list start position in the list = 0;
*
* @param position
* @time complexity O(n)
* @space complexity O(1)
*/
public void deletePos(int position) {
// private case
if (head == null)
return;
SinglyLinkedListNode temp = head;
// private case
if (position == 0) {
head = temp.next;
return;
}
// find previous node of the node to be deleted
for (int i = 0; temp != null && i < position - 1; i++) {
temp = temp.next;
}
// if position is more than number of nodes
if (temp == null || temp.next == null)
return;
SinglyLinkedListNode next = temp.next.next;
// unlink the deleted node from the list
temp.next = next;
}
/**
* delete first position from the list
* @return head
* @time complexity O(n)
* @space complexity O(1)
*/
public void deleteFirst() {
SinglyLinkedListNode previous = head;
int i = this.length();
while (i > 2) {
previous = previous.next;
i--;
}
SinglyLinkedListNode current = previous.next;
previous.next = current.next;
}
/**
* delete last position from the list
* @return head
* @time complexity O(n)
* @space complexity O(1)
*/
public void deleteLast() {
head = head.next;
}
/**
*
* @param data
* @return position of value
* @time complexity O(n)
* @space complexity O(1)
*/
public int find(int data) {
SinglyLinkedListNode curr = head;
int count = this.length() - 1;
while (curr != null) {
if (curr.data == data) {
return count;
}
curr = curr.next;
count--;
}
return count;
}
/**
* @param head
* @return length of the linked list
* @time complexity O(n)
* @space complexity O(1)
*/
public int length() {
if (head == null) {
return 0;
}
SinglyLinkedListNode curr = head;
int count = 0;
while (curr != null) {
count++;
curr = curr.next;
}
return count;
}
/**
* @param current ListNode
* @return length of the linked list
* @time complexity O(n)
* @space complexity O(1)
*/
public int length(SinglyLinkedListNode curr) {
if (head == null) {
return 0;
}
int count = 0;
while (curr != null) {
count++;
curr = curr.next;
}
return count;
}
/**
* autofill linkedList from the array
*
* @param arr
*/
public void autoFill(int[] arr) {
if (arr == null)
throw new IllegalArgumentException("Input Array isn't exist");
for (int i = 0; i < arr.length; i++) {
SinglyLinkedListNode node = new SinglyLinkedListNode();
node.data = arr[i];
node.next = head;
head = node;
}
}
/**
* @param current ListNode
* @return sorted current ListNode in the descending order
* @time complexity O(n*logn) where getMid() is O(logn) and merge() is O(n)
* @space complexity O(logn) for the recursion stack and O(1) for the merge
*/
public SinglyLinkedListNode sort(SinglyLinkedListNode head) {
//private case
if (head == null || head.next == null) return head;
SinglyLinkedListNode mid = getMid(head);
SinglyLinkedListNode left = sort(head);
SinglyLinkedListNode right = sort(mid);
return merge(right, left);
}
/**
* @param ListNode first, ListNode second
* @return merged ListNode
* @time complexity O(n + m) where n and m are the lengths of the two lists
* @space complexity O(1)
*/
public SinglyLinkedListNode merge(SinglyLinkedListNode list1, SinglyLinkedListNode list2) {
SinglyLinkedListNode toHead = new SinglyLinkedListNode();
SinglyLinkedListNode tail = toHead;
while (list1 != null && list2 != null) {
if (list1.data < list2.data) {
tail.next = list1;
list1 = list1.next;
tail = tail.next;
} else {
tail.next = list2;
list2 = list2.next;
tail = tail.next;
}
}
tail.next = (list1 != null) ? list1 : list2;
return toHead.next;
}
/**
* @param current ListNode
* @return mid Node
* @time complexity O(n)
* @space complexity O(1)
*/
public SinglyLinkedListNode getMid(SinglyLinkedListNode head) {
SinglyLinkedListNode midPrevious = null;
while (head != null && head.next != null) {
midPrevious = (midPrevious == null) ? head : midPrevious.next;
head = head.next.next;
}
SinglyLinkedListNode mid = midPrevious.next;
midPrevious.next = null;
return mid;
}
}