-
Notifications
You must be signed in to change notification settings - Fork 0
/
singlelinkedlist.c
253 lines (250 loc) · 4.3 KB
/
singlelinkedlist.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
#include<stdio.h>
#include<malloc.h>
struct Node
{
int val;
struct Node *next;
};
typedef struct Node N;
N *start=NULL,*ptr,*tmp;
void CreateNode();
void PrintNode();
void InsertFirst();
void InsertLast();
void CountNode();
void InsertAfter();
void InsertBefore();
void SearchNode();
void DeleteFirst();
void DeleteLast();
void DeleteAfter();
void DeleteBefore();
void ReverseList();
void CreateNode()
{
ptr=(N *) malloc (sizeof(N));
printf("Enter Value:");
scanf("%d",&ptr->val);
ptr->next=NULL;
if(start==NULL)
{
start=ptr;
tmp=ptr;
}
else
{
tmp->next=ptr;
tmp=ptr;
}
}
void PrintNode()
{
ptr=start;
while(ptr!=NULL)
{
printf("%d -> ",ptr->val);
ptr=ptr->next;
}
}
void InsertFirst()
{
ptr=(N *) malloc (sizeof(N));
printf("Enter Value:");
scanf("%d",&ptr->val);
ptr->next=start;
start=ptr;
}
void InsertLast()
{
tmp=start;
while(tmp->next!=NULL)
{
tmp=tmp->next;
}
ptr=(N *) malloc (sizeof(N));
printf("Enter Value:");
scanf("%d",&ptr->val);
ptr->next=NULL;
tmp->next=ptr;
}
void CountNode()
{
int c=0;
ptr=start;
while(ptr!=NULL)
{
ptr=ptr->next;
c++;
}
printf("Number of nodes %d",c);
}
void InsertAfter()
{
int n;
printf("Enter value after which to insert:");
scanf("%d",&n);
tmp=start;
while(tmp->val!=n)
{
tmp=tmp->next;
}
ptr=(N *) malloc (sizeof(N));
printf("Enter Value:");
scanf("%d",&ptr->val);
ptr->next=tmp->next;
tmp->next=ptr;
}
void InsertBefore()
{
int n;
N *prev;
printf("Enter value before which to insert:");
scanf("%d",&n);
tmp=start;
while(tmp->val!=n)
{
prev=tmp;
tmp=tmp->next;
}
ptr=(N *) malloc (sizeof(N));
printf("Enter Value:");
scanf("%d",&ptr->val);
ptr->next=tmp;
prev->next=ptr;
}
void SearchNode()
{
int n,flag=0,c=0;
printf("Enter value to search:");
scanf("%d",&n);
ptr=start;
while(ptr!=NULL)
{
c++;
if(ptr->val==n)
{
flag=1;
break;
}
ptr=ptr->next;
}
if(flag==1)
printf("%d is found at location %d",n,c);
else
printf("%d not found",n);
}
void DeleteFirst()
{
ptr=start;
if(ptr==NULL)
{
printf("List Empty");
return;
}
printf("Node %d is deleted.",ptr->val);
start=start->next;
free(ptr);
}
void DeleteLast()
{
N *prev;
ptr=start;
if(ptr==NULL)
{
printf("List Empty");
return;
}
while(ptr->next!=NULL)
{
prev=ptr;
ptr=ptr->next;
}
printf("Node %d is deleted.",ptr->val);
prev->next=NULL;
free(ptr);
}
void DeleteAfter()
{
int n;
printf("Enter node value after which to delete:");
scanf("%d",&n);
ptr=start;
while(ptr->val!=n)
{
ptr=ptr->next;
}
tmp=ptr->next;
ptr->next=tmp->next;
printf("%d is deleted.",tmp->val);
free(tmp);
}
void DeleteBefore()
{
int n;
printf("Enter node value before which to delete:");
scanf("%d",&n);
ptr=start;
while(ptr->next->val!=n)
{
tmp=ptr;
ptr=ptr->next;
}
tmp->next=ptr->next;
printf("%d is deleted.",ptr->val);
free(ptr);
}
void ReverseList()
{
N *pnode=NULL,*nnode=NULL;
tmp=start;
while(tmp!=NULL)
{
nnode=tmp->next;
tmp->next=pnode;
pnode=tmp;
tmp=nnode;
}
start=pnode;
}
int main()
{
int ch;
do
{
printf("\n -: M E N U :-\n====================================");
printf("\n1........Create Node.");
printf("\n2........Print Node.");
printf("\n3........Insert First.");
printf("\n4........Insert Last.");
printf("\n5........Count Node.");
printf("\n6........Insert After.");
printf("\n7........Insert Before.");
printf("\n8........Search Node.");
printf("\n9........Delete First.");
printf("\n10.......Delete Last.");
printf("\n11.......Delete After.");
printf("\n12.......Delete Before.");
printf("\n13.......Reverse List.");
printf("\n0........Exit.");
printf("\nEnter Choice:");
scanf("%d",&ch);
switch(ch)
{
case 1:CreateNode();break;
case 2:PrintNode();break;
case 3:InsertFirst();break;
case 4:InsertLast();break;
case 5:CountNode();break;
case 6:InsertAfter();break;
case 7:InsertBefore();break;
case 8:SearchNode();break;
case 9:DeleteFirst();break;
case 10:DeleteLast();break;
case 11:DeleteAfter();break;
case 12:DeleteBefore();break;
case 13:ReverseList();break;
}
}
while(ch!=0);
return 0;
}