forked from TARANG0503/DSA-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoublyLinkedListMenu.cpp
218 lines (199 loc) · 5.08 KB
/
DoublyLinkedListMenu.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
#include <iostream>
using namespace std;
struct Node{
int marks;
Node *next;
Node *prev;
}*NewNode,*temp,*head,*tail,*res,*prv;
int count = 0;
Node* new_node(int m)
{
NewNode = new Node();
// struct Node* NewNode = struct(Node*)malloc(sizeof(struct Node));
NewNode->marks = m;
NewNode->prev = NULL;
NewNode->next = NULL;
return NewNode;
}
void insert_beg(Node *nexptr)
{
if(head == NULL)
{
head=tail = nexptr;
}
else
{
head->prev=nexptr;
nexptr->next=head;
head=nexptr;
}
}
void insert_end(Node *nexptr)
{
if(head == NULL)
{
head=tail= nexptr;
}
else
{
tail->next=nexptr;
nexptr->prev=tail;
tail=nexptr;
}
}
void insert_at_position(Node *nexptr, int pos)
{
if(pos<1 || pos> count+1)
{
cout<<"Invalid Position"<<endl;
}
else if(pos==1)
{
insert_beg(res);
}
else if(pos>count)
{
insert_end(res);
}
else
{
if(head==NULL)
{
head = nexptr;
}
else
{
temp=head;
for(int i=1;i<pos-1;i++)
{
// prv=temp;
temp=temp->next;
/*temp->next=nxtptr;
(temp->next)->prev=nxtptr;*/
}
nexptr->prev=temp;;
nexptr->next=temp->next;
temp->next=nexptr;
(nexptr->next)->prev = nexptr;
}
}
}
void delete_beg(Node *hd)
{
if(hd==NULL)
{
cout<<"List is Empty !"<<endl;
}
else
{
temp=hd;
cout<<"node deleted "<<temp->marks<<endl;
head = temp->next;
}
}
void Result(Node *nexptr)
{
while(nexptr !=NULL)
{
cout<<nexptr->marks<<" stored at address "<<nexptr<<"next :"<<nexptr->next<<"previous : "<<nexptr->prev<<endl;
nexptr=nexptr->next;
}
}
int main()
{
head = NULL;
int M;
char choice = 'y';
while(choice =='y'||choice =='Y')
{
int chm, option;
cout<<"Main Menu"<<endl<<endl;
cout<<"1. Insertion"<<endl;
cout<<"2. Deletion"<<endl;
cout<<"3. Searching "<<endl;
cout<<"Enter your Choice : ";
cin>>chm;
switch(chm)
{
case 1:
cout<<"Insertion Menu"<<endl<<endl;
cout<<"1. Begining"<<endl;
cout<<"2. End"<<endl;
cout<<"3. Position"<<endl;
cout<<"4. Sorted Insertion"<<endl;
cout<<"Enter Choice of Insertion : ";
cin>>option;
cout<<"Enter Marks : ";
cin>>M;
res = new_node(M);
if(res != NULL)
{
cout<<"\n New Node Created"<<endl;
}
switch(option)
{
case 1:
insert_beg(res);
count++;
cout<<"Count is : "<<count<<endl;
break;
case 2:
insert_end(res);
count++;
cout<<"Count is : "<<count<<endl;
break;
case 3:
int position;
cout<<"Enter position : ";
cin>>position;
insert_at_position(res,position);
count++;
cout<<"Count is : "<<count<<endl;
break;
default:
break;
}
cout<<"\nList is: ";
Result(head);
break;
case 2:
cout<<"Deletion Menu"<<endl<<endl;
cout<<"1. Begining"<<endl;
cout<<"2. End"<<endl;
cout<<"3. Position"<<endl;
cout<<"Enter Choice of Deletion : ";
cin>>option;
switch(option)
{
case 1:
delete_beg(head);
count--;
cout<<"Count is : "<<count<<endl;
break;
case 2:
delete_end(head);
count--;
cout<<"Count is : "<<count<<endl;
break;
case 3:
int p;
cout<<"Enter Position : ";
cin>>p;
delete_at_position(head,p);
count--;
cout<<"Count is : "<<count<<endl;
break;
default:
break;
}
cout<<"\nList is: ";
Result(head);
break;
default:
break;
}
cout<<"\n Want to continue (Y/N) : ";
cin>>choice;
}
return 0;
}