-
Notifications
You must be signed in to change notification settings - Fork 0
/
SinglyLinkedList.java
317 lines (288 loc) · 6.75 KB
/
SinglyLinkedList.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
package technical;
public class SinglyLinkedList {
private Listnode head;
private static class Listnode {
private int data;
private Listnode next;
public Listnode(int data) {
this.data = data;
this.next = null;
}
}
public static void main(String[] args) {
SinglyLinkedList sll = new SinglyLinkedList();
sll.head = new Listnode(12);
// Listnode first=new Listnode(3);
Listnode second = new Listnode(13);
Listnode third = new Listnode(27);
Listnode fourth = new Listnode(14);
sll.head.next = second;
second.next = third;
third.next = fourth;
sll.print();
System.out.println();
System.out.println("nth element from last of Linked list " + sll.fromlast(2).data);
System.out.println("Length of linkedlist " + sll.length());
System.out.println("Insert first linkedlist ");
sll.insertfirst(0);
sll.print();
System.out.println();
System.out.println("Insert end linkedlist ");
sll.insertend(50);
sll.print();
System.out.println();
System.out.println("Insert at any position linkedlist ");
sll.insertatpos(3, 44);
sll.print();
System.out.println();
System.out.println("delete first " + sll.deletefirst().data);
sll.deletefirst();
sll.print();
System.out.println();
System.out.println("delete last " + sll.deletelast().data);
sll.print();
System.out.println();
System.out.println("delete any position " + sll.deleteanypos(3).data);
sll.print();
System.out.println();
System.out.println("element present in the linkedlist " + sll.search(5));
Listnode revhead = sll.reverse(sll.head);
sll.display(revhead);
System.out.println();
}
public Listnode mergesortedlist(Listnode a,Listnode b) {
Listnode dummy=new Listnode(0);
Listnode tail=dummy;
while(a!=null && b!=null) {
if(a.data<=b.data) {
tail.next=a;
a=a.next;
}else {
tail.next=b;
b=b.next;
}
}
if(a==null) {
tail.next=b;
}else {
tail.next=a;
}
return dummy.next;
}
public Listnode removeloop() {
Listnode fast=head;
Listnode slow=head;
while(fast!=null && fast.next !=null) {
slow=slow.next;
fast=fast.next;
if(fast==slow) removedloop(slow);
}
return null;
}
public void removedloop(Listnode slow) {
Listnode temp=head;
while(slow!=temp) {
slow=slow.next;
temp=temp.next;
}
temp.next=null;
}
public Listnode startloop() {
Listnode fast=head;
Listnode slow=head;
while(fast!=null && fast.next !=null) {
slow=slow.next;
fast=fast.next;
if(fast==slow) return getstatingnode(slow);
}
return null;
}
public Listnode getstatingnode(Listnode slow) {
Listnode temp=head;
while(slow!=temp) {
slow=slow.next;
temp=temp.next;
}
return temp;
}
public void deletekeynode(int key) {
Listnode current = head;
Listnode temp = null;
while (current != null && current.data != key) {
temp = current;
current = current.next;
}
temp.next = current.next;
}
public Listnode fromlast(int n) {
int count = 0;
Listnode refptr = head;
Listnode mainptr = head;
while (count < n) {
refptr = refptr.next;
count++;
}
while (refptr != null) {
refptr = refptr.next;
mainptr = mainptr.next;
}
return mainptr;
}
public boolean detectloop() {
Listnode fastptr=head;
Listnode slowptr=head;
while(fastptr!=null && fastptr.next!=null) {
fastptr=fastptr.next.next;
slowptr=slowptr.next;
if(fastptr==slowptr) {
return true;
}
}
return false;
}
public Listnode insertsorted(Listnode newnode) {
Listnode current=head;
Listnode temp=null;
while(current !=null && current.data<newnode.data) {
temp=current;
current=current.next;
}
newnode.next=current;
temp.next=newnode;
return head;
}
public void removeduplicatesorted() {
Listnode current=head;
while(current!=null && current.next!=null) {
if(current.data==current.next.data) {
current.next=current.next.next;
}else {
current=current.next;
}
}
}
public Listnode middlenode() {
Listnode fastptr = head;
Listnode slowptr = head;
while (fastptr != null && fastptr.next != null) {
slowptr = slowptr.next;
fastptr = fastptr.next.next;
}
return slowptr;
}
public void display(Listnode revhead) {
Listnode temp = revhead;
while (temp != null) {
System.out.print(temp.data + "--> ");
temp = temp.next;
}
System.out.print("null");
}
public Listnode reverse(Listnode head) {
if (head == null) {
return head;
}
Listnode current = head;
Listnode pre = null;
Listnode next = null;
while (current != null) {
next = current.next;
current.next = pre;
pre = current;
current = next;
}
return pre;
}
public boolean search(int value) {
Listnode temp = head;
while (temp != null) {
if (temp.data == value) {
return true;
}
temp = temp.next;
}
return false;
}
public void print() {
Listnode temp = head;
while (temp != null) {
System.out.print(temp.data + "--> ");
temp = temp.next;
}
System.out.print("null");
}
public int length() {
int count = 0;
Listnode temp = head;
while (temp != null) {
count++;
temp = temp.next;
}
return count;
}
public void insertfirst(int value) {
Listnode newnode = new Listnode(value);
newnode.next = head;
head = newnode;
}
public void insertend(int value) {
Listnode newnode = new Listnode(value);
Listnode temp = head;
while (temp.next != null) {
temp = temp.next;
}
temp.next = newnode;
}
public void insertatpos(int pos, int value) {
Listnode newnode = new Listnode(value);
if (pos == 1) {
newnode.next = head;
head = newnode;
} else {
Listnode pre = head;
int count = 1;
while (count < pos - 1) {
pre = pre.next;
count++;
}
newnode.next = pre.next;
pre.next = newnode;
}
}
public Listnode deletefirst() {
if(head==null) {return null;}
Listnode temp=head;
head=head.next;
temp.next=null;
return temp;
}
public Listnode deletelast() {
if (head == null || head.next == null) {
return head;
}
Listnode current = head;
Listnode pre = null;
while (current.next != null) {
pre = current;
current = current.next;
}
pre.next = null;
return current;
}
public Listnode deleteanypos(int pos) {
if (pos == 1) {
head = head.next;
} else {
int count = 1;
Listnode pre = head;
while (count < pos - 1) {
pre = pre.next;
count++;
}
Listnode current = pre.next;
pre.next = current.next;
return current;
}
return null;
}
}