-
Notifications
You must be signed in to change notification settings - Fork 0
/
linkedlist.c
296 lines (237 loc) · 5.18 KB
/
linkedlist.c
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
#include<stdio.h>
#define true 1
struct node
{
int data;
struct node *next;
};
struct node *start=NULL;
struct node *p;
struct node *temp;
void insertion(int item)
{
struct node *temp=(struct node*)malloc(sizeof(struct node));
temp->data=item;
temp->next=NULL;
if(start==NULL)
{
start=temp;
}
else
{
p=start;
while(p->next!=NULL)
{
p=p->next;
}
p->next=temp;
}
}
void display()
{
p=start;
while(p!=NULL)
{
printf("%d \t",p->data);
p=p->next;
}
}
void count_node()
{
p=start;
int i=0;
while(p!=NULL)
{
i++;
p=p->next;
}
printf("no of node:%d,\n",i);
}
void linear_search_list(int ele)
{
p=start;
int i=ele;
while(p!=NULL)
{
if(p->data==i)
{printf("%d",p);
break;
}
else
{
p=p->next;
}
}
}
void reverse()
{
struct node *p1,*p2,*p3;
p1=start;
p2=p1->next;
p3=p2->next;
p1->next=NULL;
p2->next=p1;
while(p3!=NULL)
{
p1=p2;
p2=p3;
p3=p3->next;
p2->next=p1;
}
start=p2;
}
void at_last_node(int item)
{
// struct node *temp=(struct node*)malloc(sizeof(struct node));
p=start;
if(start==NULL)
{
printf("no node created");
return;
}
while(p->next!=NULL)
{
p=p->next;
}
p->next=temp;
temp->next=NULL;
temp->data=item;
}
void at_any_index(int item,int pos)
{
// struct node *temp=(struct node*)malloc(sizeof(struct node));
int i=1;
p=start;
printf("position:%d",pos);
while(i<pos-1)
{
p=p->next;
i++;
}
temp->next=p->next;
p->data=item;
p->next=temp;
}
void at_any_value(int item)
{
p=start;
// struct node *temp=(struct node*)malloc(sizeof(struct node));
if(start==NULL)
{
printf("no element");
return;
}
while(p!=NULL)
{
if(p->data==item)
{
temp->next=p->next;
p->next=temp;
temp->data=item;
}
else
printf("not possible");
}
}
void del_begin()
{
//struct node *temp=(struct node*)malloc(sizeof(struct node));
temp=start;
if(start==NULL)
{
printf("no element");
return;
}
start=temp->next;
free(temp);
}
void del_last()
{
//struct node *temp=(struct node*)malloc(sizeof(struct node));
int i=1;
p=start;
if(start==NULL)
{
printf("no element");
return;
}
while(p->next->next!=NULL)
{
p=p->next;
}
temp=p->next;
p->next=NULL;
free(temp);
}
void del_any(int pos)
{
//struct node *temp=(struct node*)malloc(sizeof(struct node));
int i=1;
p=start;
if(start==NULL)
{
printf("no element");
return;
}
while(i<pos-1)
{
p=p->next;
i++;
}
temp=p->next;
p->next=temp->next;
free(temp);
}
int main()
{
struct node *temp=(struct node*)malloc(sizeof(struct node));
int s,item,pos;
temp=(struct node*)malloc(sizeof(struct node));
while(true)
{
printf("1 for insert\n 2 for display \n 3 for count_node \n 4 for linear search on list \n 5 for reverse the list \n 6 for add item in last position \n 7 for add item at any index \n 8 for add item based on value \n 9 for delete element from begin \n 10 for delete element from last \n 11 delete a element from any position \n 12 for break the loop\n ");
printf("enter a choice:");
scanf("%d",&s);
switch(s)
{
case 1:printf("add a element:");
scanf("%d",&item);
insertion(item);
break;
case 2:display();
break;
case 3:count_node();
break;
case 4:scanf("%d",&item);
linear_search_list(item);
break;
case 5:reverse();
break;
case 6:scanf("%d",&item);
at_last_node(item);
break;
case 7:printf("enter a position and data to enter:\n");
scanf("%d\n %d",&pos,&item);
at_any_index(pos,item);
break;
case 8: printf("enter a position to enter:\n");
scanf("%d",&item);
at_any_value(item);
break;
case 9:del_begin();
break;
case 10:del_last();
break;
case 11:printf("enter a position to delete:\n");
scanf("%d",&item);
del_any(item);
break;
default:printf("end");
break;
}
if(s==12)
{
break;
}
}
}