-
Notifications
You must be signed in to change notification settings - Fork 101
/
circular single linked list
409 lines (404 loc) · 6.31 KB
/
circular single linked list
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
402
403
404
405
406
407
408
409
#include<stdio.h>
#include<stdlib.h>
struct node
{
int data;
struct node* next;
};
void display(struct node *p)
{
struct node *ptr=p;
do
{
printf("element:%d\n",ptr->data);
ptr=ptr->next;
}while(ptr!=p);
}
void count(struct node *head)
{
struct node *p=head;
int count=0;
do
{
p=p->next;
count++;
}while(p!=head);
printf("count=%d\n",count);
}
void search(struct node *head,int n)
{
printf("Enter which element you want to search\n");
scanf("%d",&n);
struct node *p=head;
int i=1;
do
{
if(p==NULL)
{
printf("Node not found\n");
return;
}
if(p->data==n)
{
printf("Element is present at %d\n",i);
return;
}
p=p->next;
i++;
}while(p!=head);
}
void insert_beg(struct node **p,int n)
{
printf("\nEnter data which u want to add at begining\n");
scanf("%d",&n);
struct node *q,*r;
r=*p;
q=(struct node *)malloc(sizeof(struct node));
q->data=n;
q->next=*p;
do
{
r=r->next;
}while(r->next!=*p);
r->next=q;
*p=q;
}
void insert_at_end(struct node **p,int n)
{
printf("Enter element which you want to insert at end\n");
scanf("%d",&n);
struct node *q,*r;
if(*p==NULL)
{
q=(struct node *)malloc(sizeof(struct node));
q->data=n;
q->next=*p;
*p=q;
}
else
{
r=*p;
while(r->next!=*p)
{
r=r->next;
}
q=(struct node *)malloc(sizeof(struct node));
q->data=n;
q->next=*p;
r->next=q;
}
}
void insert_after(struct node **q,int loc,int num)
{
printf("Enter loation and element\n");
scanf("%d%d",&loc,&num);
struct node *p,*r;
int i=1;
p=*q;
if(loc>0)
{
while(i<loc)
{
p=p->next;
i++;
if(p==*q)
{
printf("less element thn specified");
return ;
}
}
r=(struct node *)malloc(sizeof(struct node));
r->data=num;
r->next=p->next;
p->next=r;
}
else
{
printf("Enter corrrct position\n");
}
}
void insert_before(struct node **q,int loc,int n)
{
printf("Enter loation and element which u want to insert before\n");
scanf("%d %d",&loc,&n);
struct node *p,*r,*s;
int i=1;
p=*q;
r=*q;
if(loc==1)
{
s=(struct node *)malloc(sizeof(struct node));
s->data=n;
s->next=*q;
do
{
r=r->next;
}while(r->next!=*q);
*q=s;
}
else if(loc>1)
{
while(i<loc-1)
{
p=p->next;
i++;
if(p->next==*q)
{
printf("less element than specified");
return;
}
}
s=(struct node *)malloc(sizeof(struct node));
s->data=n;
s->next=p->next;
p->next=s;
}
else
{
printf("Please enter correct position\n");
}
}
void delete_first_node(struct node **q)
{
struct node *r=*q;
struct node *p=*q;
if(*q==NULL)
printf("No element to delete");
else
{
do
{
r=r->next;
}while(r->next!=*q);
r->next=p->next;
*q=p->next;
free(p);
}
}
void delete_node(struct node **q,int value)
{
printf("Enter value which u want to delete");
scanf("%d",&value);
struct node *p,*r,*s;
p=*q;
s=*q;
if(*q==NULL)
{
printf("list is empty");
}
else if(p->data==value&&p->next==*q)
{
free(p);
*q=NULL;
}
else if(p->data==value)
{
r=*q;
do
{
r=r->next;
}while(r->next!=*q);
r->next=p->next;
*q=p->next;
free(p);
}
else
{
s=*q;
while((s->next!=*q)&&(s->next->data!=value))
{
s=s->next;
}
if(s->next->data==value)
{
struct node *t=s->next;
s->next=t->next;
free(t);
}
else
{
printf("Data not found");
}
}
}
void delete_last_node(struct node **q)
{
struct node *r,*s;
if(*q==NULL)
{
printf("no element to element");
}
else
{
s=*q;
while(s->next!=*q)
{
r=s;
s=s->next;
}
r->next=*q;
free(s);
}
}
void delete_at(struct node **q,int loc)
{
printf("Enter location for delete");
scanf("%d",&loc);
struct node *p,*r,*s;
p=*q;
r=*q;
s=*q;
int i=1;
if(loc==1)
{
do
{
r=r->next;
}while(r->next!=*q);
r->next=p->next;
*q=p->next;
free(p);
}
else if(loc>1)
{
while(i<loc)
{
s=p;
p=p->next;
i++;
if(p->next==*q)
{
printf("less element than specified");
return ;
}
}
s->next=p->next;
free(p);
}
else
{
printf("please enter correct position\n");
}
}
void delete_before(struct node **q,int loc)
{
printf("enter location where u want to delete before");
scanf("%d",&loc);
struct node *p,*r,*s;
int i=1;
p=*q;
r=*q;
if(loc==2)
{
do
{
r=r->next;
}while(r->next!=*q);
r->next=p->next;
*q=p->next;
free(p);
}
else if(loc>2)
{
while(i<loc-2)
{
p=p->next;
i++;
if(p->next->next==*q)
{
printf("no element to delete");
return;
}
}
r=p->next;
s=r->next;
p->next=s;
free(r);
}
else
{
printf("enter correct position to delete before");
}
}
int main()
{
int total,choice,n,data,p,loc,value,num;
struct node *head;
struct node *second;
struct node *third;
head=(struct node *)malloc(sizeof(struct node));
second=(struct node *)malloc(sizeof(struct node));
third=(struct node *)malloc(sizeof(struct node));
head->data=23;
head->next=second;
second->data=65;
second->next=third;
third->data=78;
third->next=head;
while(1)
{
printf("Enter\n1 for display\n2 for count\n3 for search\n4 for insert at begining\n5 for insert at end\n6 for insert after\n7 for insert before\n8 for delete first node\n9 foe delete node\n10 for delete last node\n11 for delete at\n12 for delete before\n13 for end\n");
printf("Enter choice");
scanf("%d",&choice);
if(choice>12)
{
printf("End");
break;
}
else
{
switch(choice)
{
case 1:
display(head);
break;
case 2:
count(head);
break;
case 3:
search(head,n);
display(head);
break;
case 4:
insert_beg(&head,n);
display(head);
break;
case 5:
insert_at_end(&head,n);
display(head);
break;
case 6:
insert_after(&head,loc,num);
display(head);
break;
case 7:
insert_before(&head,loc,n);
display(head);
break;
case 8:
delete_first_node(&head);
display(head);
break;
case 9:
delete_node(&head,value);
display(head);
break;
case 10:
delete_last_node(&head);
display(head);
break;
case 11:
delete_at(&head,n);
display(head);
break;
case 12:
delete_before(&head,loc);
display(head);
break;
defult:
printf("invalid");
break;
}
}
}
}