forked from sujalgera01/Hacktoberfest2021-DSA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsll.cpp
401 lines (343 loc) · 6.6 KB
/
sll.cpp
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
#include<iostream>
using namespace std;
class Node{
public:
int data;
Node* next;
}*head=NULL;
void create(int n);
void insert_beg();
void traverse();
void insert_end();
void insert_pos();
void search();
void del_beg();
void del_end();
void reverse();
void middle();
void occurence();
void get_Nth();
void get_Nth_end(int end);
void del_Nth_end(int end);
int main()
{
int choice,n,end;
do{
cout << "\n1.create\n";
cout <<"2.insert in the beginning\n";
cout <<"3.traverse \n";
cout << "4.insert in the end\n";
cout << "5.insert after node\n";
cout << "6.Search\n";
cout << "7.delete in beg \n";
cout << "8.delete in end \n";
cout << "9.reverse the list \n";
cout << "10.middle element\n";
cout << "11.count no. of specific element\n";
cout << "12.to get Nth node\n";
cout << "13.to get Nth node from the end\n";
cout << "14.remove Nth node from the end\n";
// cout << "13.to get Nth node from the end\n";
// cout << "13.to get Nth node from the end\n";
// cout << "13.to get Nth node from the end\n";
cout << "20.exit\n";
cout << "enter your choice ";
cin >> choice;
switch(choice)
{
case 1:
create(n);
break;
case 2:
insert_beg();
break;
case 3:
traverse();
break;
case 4:
insert_end();
break;
case 5:
insert_pos();
break;
case 6:
search();
break;
case 7:
del_beg();
break;
case 8:
del_end();
break;
case 9:
reverse();
break;
case 10:
middle();
break;
case 11:
occurence();
break;
case 12:
get_Nth();
break;
case 13:
get_Nth_end(end);
break;
case 14:
del_Nth_end(end);
break;
case 20:
exit(0);
default:
cout <<"wrong choice";
break;
}
}
while(choice!=20);
}
//create
void create(int n)
{
Node*temp;
cout << "enter number of nodes ";
cin >> n;
Node*newnode;
int data;
head = (Node*)malloc(sizeof(Node));
if(head==NULL){
cout << "list is empty";
}
cout << "enter data of node 1: ";
cin >> data;
head->data = data;
head->next = NULL;
temp = head;
for(int i=2;i<=n;i++){
newnode = (Node*)malloc(sizeof(Node));
if(newnode == NULL)
{
cout << "list is empty";
}
cout << "enter data of node" << i << " : ";
cin >> data;
newnode->data = data;
newnode->next = NULL;
temp->next = newnode;
temp = temp->next;
}
}
//traverse
void traverse(){
Node*temp=head;
if(head==NULL){
cout << "list is empty";
}
int count = 0;
cout << "traversal:";
while(temp!=NULL)
{
count++;
cout << "->" <<temp->data;
temp=temp->next;
}
cout <<"\ncount = " << count <<"\n";
}
//insert in the beginning
void insert_beg(){
Node* temp, *newnode;
int data;
if(head==NULL){
cout << "list is empty";
}
newnode = (Node*)malloc(sizeof(Node));
cout << "enter data of node";
cin >> newnode->data;
newnode->next = head;
head = newnode;
traverse();
}
//insert at the end
void insert_end(){
Node* temp, *newnode;
int data;
if(head==NULL){
cout << "list is empty";
}
newnode = (Node*)malloc(sizeof(Node));
cout << "enter data of node ";
cin >> newnode->data;
newnode->next = NULL ;
temp = head;
while(temp->next != NULL){
temp=temp->next;
}
temp->next = newnode;
traverse();
}
//insert node after position
void insert_pos(){
Node* temp, *newnode;
int data,pos,i=1;
cout << "enter desired location:";
cin >> pos;
if(head==NULL){
cout << "list is empty";
}
temp = head;
while(i<pos){
temp = temp->next;
i++;
}
newnode = (Node*)malloc(sizeof(Node));
cout << "enter data of node ";
cin >> newnode->data;
newnode->next = temp->next;
temp->next = newnode;
traverse();
}
//search
void search(){
Node*temp;
int val,flag=0;
cout << "enter data to be searched ";
cin >> val;
temp = head;
while(temp != NULL){
if(temp->data == val){
cout << "value found";
flag++;
}
temp=temp->next;
}
if(flag==0){
cout <<"\nnot found";
}
}
void del_beg(){
Node*temp;
temp = head;
head = head->next;
free(temp);
traverse();
}
void del_end(){
Node*temp,*prev;
temp = head;
while(temp->next !=NULL){
temp= temp->next;
}
free(temp);
traverse();
}
//reverse
void reverse(){
Node*prev,*current,*nextnode;
prev = nextnode = NULL;
current = head;
cout << "reverse:";
while(current != NULL){
nextnode = current->next;
current->next = prev;
prev = current;
current = nextnode;
}
head = prev;
traverse();
}
//middle
void middle(){
Node*slow,*fast;
slow = fast = head;
while(fast!=NULL && fast->next != NULL){
slow = slow->next;
fast = fast->next->next;
}
cout << slow->data;
}
void occurence(){
Node*temp;
int val,flag=0;
cout << "enter data to be searched ";
cin >> val;
temp = head;
while(temp != NULL){
if(temp->data == val){
flag++;
}
temp=temp->next;
}
if(flag==0){
cout << "\nnot found";
}
cout << flag;
}
void get_Nth(){
Node*temp;
int val,flag=0,count=0;
cout << "enter index of node: ";
cin >> val;
temp = head;
while(temp != NULL){
if(count == val){
flag++;
cout << temp->data;
}
count++;
temp=temp->next;
}
if(flag==0){
cout << "\nnot found";
}}
void get_Nth_end(int end){
Node*temp;
temp = head;
if(head==NULL){
cout <<"list is empty";
}
cout << "\nenter n from the end:";
cin >> end;
int count = 0;
cout <<"traversal:";
while(temp!=NULL)
{
temp=temp->next;
count++;
}
if (count < end)
return;
temp = head;
for (int i = 1; i < count - end + 1; i++)
temp = temp->next;
cout << temp->data;
}
void del_Nth_end(int end){
Node*temp;
temp = head;
if(head==NULL){
cout <<"list is empty";
}
cout << "\nenter n from the end:";
cin >> end;
int count = 0;
while(temp!=NULL)
{
temp=temp->next;
count++;
}
if (end >= count) {
Node* ptr=head;
head=head->next;
free(ptr);
traverse();
}
temp = head;
for (int i = 0; i < count - end - 1; i++) {
temp = temp->next;
}
cout << temp->data << endl;
Node*t=temp->next;
temp->next = t->next;
free(t);
traverse();
}