-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinkedList.java
293 lines (238 loc) · 6.73 KB
/
LinkedList.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
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
// Linked List (from scratch)
// add head
// add tail
// add element in middle
// delete head
// delete tail
// delete element from middle
// reverse the list
// search element in list
// print the list
// get the list size
// cycle detection
import java.util.*;
class LinkList {
Node head; //head of the node
private int size; //size of list
class Node {
int data; //input type from user
Node next; //track each node
// create a constructor
Node(int data) {
this.data = data;
this.next = null;
size++;
}
}
// add head
public void addHead(int data) {
Node newNode = new Node(data); //create a new node
// check if head is null or not
if(head == null) {
head = newNode;
return;
}
newNode.next = head;
head = newNode;
}
// add tail
public void addTail(int data) {
Node newNode = new Node(data);
// check if head is null or not
if(head == null) {
head = newNode;
return;
}
// get the current node from list
Node currNode = head;
while(currNode.next != null) {
currNode = currNode.next;
}
currNode.next = newNode;
}
// add middle
public void addMiddle(int idx , int data) { // idx is indicate the index number
// check the index value
if(idx > size || idx < 0) {
System.out.print("Invalid Index");
return;
}
Node newNode = new Node(data);
// check if head is null or not
if(head == null || idx == 0) {
newNode.next = head;
head = newNode;
return;
}
Node currNode = head;
// traverse in list
for(int i = 1; i < size; i += 1) {
// if index value found in list
if(i == idx) {
Node nextNode = currNode.next;
currNode.next = newNode;
newNode.next = nextNode;
break;
}
currNode = currNode.next;
}
}
// delete head
public void deleteHead() {
// check if head is null or not
if(head == null) {
return;
}
// if we delete node from head size will be reduce
size--;
// after delete head will be head next value
head = head.next;
}
// delete tail
public void deleteTail() {
// check if head is null or not
if(head == null) {
return;
}
// if we delete node from tail size will be reduce
size--;
// check if head next value is also null or not
if(head.next == null) {
head = null;
return;
}
Node secondLast = head;
Node lastNode = head.next;
while(lastNode.next != null) {
lastNode = lastNode.next;
secondLast = secondLast.next;
}
secondLast.next = null;
}
// delete middle
public void deleteMiddle(int idx) {
// check if head is null or not
if(head == null) {
return;
}
// if we delete node from middle size will be reduce
size--;
Node currNode = head;
// traverse in list and also check the current node
for(int i = 1; currNode.next != null && i < idx-1; i += 1){
currNode = currNode.next;
}
// check the index is valid or not
if(currNode == null || currNode.next == null){
return;
}
Node nextNode = currNode.next.next;
currNode.next = nextNode;
}
// reverse list
public void reverseList() {
// check if head is null or not
if(head == null || head.next == null) {
return;
}
// prevNode is previous node
Node prevNode = head;
Node currNode = head.next;
while(currNode != null) {
Node nextNode = currNode.next;
currNode.next = prevNode;
// update
prevNode = currNode;
currNode = nextNode;
}
head.next = null;
head = prevNode;
}
// search element
public void search(int idx) {
Node currNode = head;
int i = 1; // track the index
// at first we assume that the index is not present, so flag is false
boolean flag = false; //helps us to find out whether the element is present inside the list or not
while(currNode != null) {
// if element is found
if(currNode.data == idx) {
flag = true;
break;
}
i++; //update
currNode = currNode.next;
}
if(flag) {
System.out.print(idx + " found at index " + i + "\n");
}
else {
System.out.print(idx + " not found\n");
}
}
// print list
public void printList() {
// check if head is null ot not
if(head == null) {
System.out.print("Empty List");
return;
}
Node currNode = head;
while(currNode != null) {
System.out.print(currNode.data + " ");
currNode = currNode.next;
}
System.out.print("\n");
}
// get size
public int getSize() {
return size;
}
// cycle detection
public void cycleDetection() {
Node prevNode = head;
Node currNode = head;
boolean flag = false;
while(prevNode != null && currNode != null && currNode.next != null) {
prevNode = prevNode.next;
currNode = currNode.next.next;
if(prevNode == currNode) {
flag = true;
break;
}
}
if(flag) {
System.out.print("cycle detected");
}
else {
System.out.print("no cycle detected");
}
}
}
class Firstclass {
public static void main(String args[]) {
LinkList list = new LinkList();
list.addHead(1);
list.addHead(0);
list.printList();
list.addTail(2);
list.addTail(3);
list.printList();
list.addMiddle(2, 10);
list.printList();
System.out.println(list.getSize());
list.search(3);
list.deleteHead();
list.printList();
list.deleteTail();
list.printList();
list.reverseList();
list.printList();
list.deleteMiddle(2);
list.printList();
System.out.print(list.getSize());
System.out.println();
list.head.next.next = list.head;
list.cycleDetection();
}
}