-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedList.cpp
More file actions
272 lines (256 loc) · 7.08 KB
/
Copy pathLinkedList.cpp
File metadata and controls
272 lines (256 loc) · 7.08 KB
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
#include<bits/stdc++.h>
using namespace std;
typedef struct employ{
string name;
string dpt;
int IDno;
int mobno;
struct employ *nxt;
}*Entry;
Entry getdata(){
Entry obj;
obj=new(struct employ);
cout<<"Enter the Name of employe"<<endl;
cin>>obj->name;
cout<<"Enter the department of employe"<<endl;
cin>>obj->dpt;
cout<<"Enter the ID Number of employee"<<endl;
cin>>obj->IDno;
cout<<"Enter the Mobile Number of employee"<<endl;
cin>>obj->mobno;
obj->nxt=NULL;
return(obj);
}
Entry createnode(Entry firstnode){
Entry obj,new_node;
char ch;
do{
new_node=getdata();
if(firstnode==NULL){
firstnode=new_node;
}
else{
obj=firstnode;
while(obj->nxt!=NULL){
obj=obj->nxt;
}
obj->nxt=new_node;
}
cout<<"Do you wwanna add more nodes(y/n)"<<endl;
cin>>ch;
}while(ch=='Y'||ch=='y');
return firstnode;
}
Entry insertbegin(Entry firstnode){
Entry tempnode;
tempnode=getdata();
tempnode->nxt=firstnode;
firstnode=tempnode;
return firstnode;
}
Entry insertatpos(Entry firstnode){
Entry tempnode,tempnode1;
int pos,j;
cout<<"Enter the position where node is to be inserted "<<endl;
cin>>pos;
j=1;
tempnode=getdata();
tempnode1=firstnode;
while(j<pos-1){
if(tempnode1->nxt==NULL){
cout<<"Invalid position"<<endl;
return firstnode;
}
tempnode1=tempnode1->nxt;
}
tempnode->nxt=tempnode1->nxt;
tempnode1->nxt=tempnode;
return firstnode;
}
Entry insertatend(Entry firstnode){
Entry tem,temp1;
temp1=getdata();
tem=firstnode;
while(tem->nxt!=NULL){
tem=tem->nxt;
}
tem->nxt=temp1;
return firstnode;
}
Entry deletebegin(Entry firstnode){
Entry temp;
if(firstnode==NULL){
cout<<"Empty list "<<endl;
}
else{
temp=firstnode;
firstnode=firstnode->nxt;
cout<<"Deleted data"<<endl;
cout<<"Name of employee : "<<temp->name<<endl;
cout<<"Department of employee : "<<temp->dpt<<endl;
cout<<"ID Number of employee : "<<temp->IDno<<endl;
cout<<"Mobile number of employee : "<<temp->mobno<<endl;
delete temp;
}
return firstnode;
}
Entry deleteatpos(Entry firstnode){
Entry temp,temp1;
int pos;
if(firstnode==NULL){
cout<<"\n EMPTY LIST ";
}
else{
cout<<"\n Enter the ID to be deleted ";
cin>>pos;
temp=firstnode;
while(temp->IDno!=pos){
temp1=temp;
temp=temp->nxt;
}
temp1->nxt=temp->nxt;
cout<<"\n DELETED RECORD";
cout<<"Name of employee : "<<temp->name<<endl;
cout<<"Department of employee : "<<temp->dpt<<endl;
cout<<"ID Number of employee : "<<temp->IDno<<endl;
cout<<"Mobile number of employee : "<<temp->mobno<<endl;
delete temp;
}
return firstnode;
}
Entry DeleteatEnd(Entry firstnode){
Entry temp,temp1;
if(firstnode==NULL){
cout<<"\n EMPTY LIST";
}
else{
temp=firstnode;
while(temp->nxt!=NULL){
temp1=temp;
temp=temp->nxt;
}
temp1->nxt=NULL;
cout<<"\n DELETED RECORD IS ";
cout<<"Name of employee : "<<temp->name<<endl;
cout<<"Department of employee : "<<temp->dpt<<endl;
cout<<"ID Number of employee : "<<temp->IDno<<endl;
cout<<"Mobile number of employee : "<<temp->mobno<<endl;
delete temp;
}
return firstnode;
}
void search_node(Entry firstnode){
Entry temp;
int empid;
cout<<"\n Enter the ID of employ to be searched ";
cin>>empid;
temp=firstnode;
while(temp!=NULL && temp->IDno!=empid)
temp=temp->nxt;
if(temp==NULL)
cout<<"\n Record Not Found";
else
cout<<"Name of employee : "<<temp->name<<endl;
cout<<"Department of employee : "<<temp->dpt<<endl;
cout<<"ID Number of employee : "<<temp->IDno<<endl;
cout<<"Mobile number of employee : "<<temp->mobno<<endl;
}
void modify_Data(Entry firstnode){
int empid;
Entry temp;
cout<<"\n Enter the ID of employee to be modified";
cin>>empid;
temp=firstnode;
while(temp!=NULL){
if(temp->IDno==empid){
cout<<"Enter the Name of employe"<<endl;
cin>>temp->name;
cout<<"Enter the department of employe"<<endl;
cin>>temp->dpt;
cout<<"Enter the ID Number of employee"<<endl;
cin>>temp->IDno;
cout<<"Enter the Mobile Number of employee"<<endl;
cin>>temp->mobno;
break;
}
temp=temp->nxt;
}
}
void display_data(Entry firstnode)
{
Entry obj,tempobj;
if(firstnode==NULL)
{
cout<<"\n The list is Empty";
}
else
{
tempobj=firstnode;
while(tempobj!=NULL)
{
cout<<"Name of employee : "<<tempobj->name<<endl;
cout<<"Department of employee : "<<tempobj->dpt<<endl;
cout<<"ID Number of employee : "<<tempobj->IDno<<endl;
cout<<"Mobile number of employee : "<<tempobj->mobno<<endl;
tempobj=tempobj->nxt;
cout<<endl;
}
}
}
int main(){
int choice;
char exitcode;
Entry temp,firstnode=NULL;
do
{
cout<<"Singly linked list";
cout<<"\n1.Create Linked list \t 2.Display Linked List \t 3.Search\n";
cout<<"4.Insert node at begin \t 5.Insert node at end \t 6.Insert node at position\n";
cout<<"7.Delete node at begin \t 8.Delete node at end \t 9.Delete node at position\n";
cout<<"10.Modify a node \t 11.Exit \n";
cout<<"Enter your choice: ";
cin>>choice;
switch(choice)
{
case 1:
firstnode=createnode(firstnode);
break;
case 2:
display_data(firstnode);
break;
case 3:
search_node(firstnode);
break;
case 4:
firstnode=insertbegin(firstnode);
break;
case 5:
insertatend(firstnode);
break;
case 6:
insertatpos(firstnode);
break;
case 7:
firstnode=deletebegin(firstnode);
break;
case 8:
DeleteatEnd(firstnode);
break;
case 9:
deleteatpos(firstnode);
break;
case 10:
modify_Data(firstnode);
break;
case 11:
exit;
break;
default:
cout<<"Wrong Choice enter from (1-11)";
break;
}
cout<<"\nDo you want to continue with the SLL OPERATIONS?[Y/N]"<<endl;
cin>>exitcode;
}while(exitcode=='Y' || exitcode=='y');
return 0;
}