forked from AnujitSingh/Code_with_CPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DoublyLinkedlList.cpp
266 lines (266 loc) · 6.09 KB
/
DoublyLinkedlList.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
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
#include <stdio.h>
#include <stdlib.h>
// structure for doubly linked list
struct node
{
int data;
struct node *next;
struct node *prev;
};
// global variables
struct node *head = NULL;
struct node *tail = NULL;
int size = 0;
// function for inserting a node at beginning
void InsertAtBegin(int data)
{
struct node *newNode = (struct node *)malloc(sizeof(struct node));
newNode->data = data;
newNode->next = NULL;
newNode->prev = NULL;
if (head == NULL)
{
head = newNode;
tail = newNode;
}
else
{
newNode->next = head;
head->prev = newNode;
head = newNode;
}
size++;
}
// function for inserting a node at end
void InsertAtEnd(int data)
{
struct node *newNode = (struct node *)malloc(sizeof(struct node));
newNode->data = data;
newNode->next = NULL;
newNode->prev = NULL;
if (head == NULL)
{
head = newNode;
tail = newNode;
}
else
{
newNode->prev = tail;
tail->next = newNode;
tail = newNode;
}
size++;
}
// function for inserting a node at position
void InsertAtPosition(int data, int position)
{
if (position >= 0 && position <= size)
{
if (position == 0)
{
InsertAtBegin(data);
}
else if (position == size)
{
InsertAtEnd(data);
}
else
{
struct node *newNode = (struct node *)malloc(sizeof(struct
node));
newNode->data = data;
struct node *ptr = head;
int i = 0;
while (i < position)
{
ptr = ptr->next;
i++;
}
newNode->next = ptr;
newNode->prev = ptr->prev;
ptr->prev->next = newNode;
ptr->prev = newNode;
size++;
}
}
else
{
printf("Invalid position\n");
}
}
// function for deleting a node at beginning
int DeleteAtBegin()
{
if (head == NULL)
{
printf("List Underflow\n");
return -1;
}
else
{
struct node *ptr = head;
head = head->next;
head->prev = NULL;
int data = ptr->data;
free(ptr);
size--;
return data;
}
}
// function for deleting a node at end
int DeleteFromEnd()
{
if (head == NULL)
{
printf("List Underflow\n");
return -1;
}
else
{
struct node *ptr = tail;
tail = tail->prev;
tail->next = NULL;
int data = ptr->data;
free(ptr);
size--;
return data;
}
}
// function for printing in reverse
void DisplayReversed()
{
if (head == NULL)
{
printf("\nList is empty\n");
}
else
{
printf("\nList in reverse order:-\nNULL");
struct node *ptr = tail;
while (ptr != NULL)
{
printf(" <--> |%d| ", ptr->data);
ptr = ptr->prev;
}
printf("<--> NULL\n");
}
}
// function for search an element
int Search(int data)
{
if (head == NULL)
{
printf("List is empty\n");
return -1;
}
else
{
struct node *ptr = head;
int i = 0;
while (ptr != NULL)
{
if (ptr->data == data)
{
return i;
}
ptr = ptr->next;
i++;
}
return -1;
}
}
// function for print the list
void Display()
{
if (head == NULL)
{
printf("\nList is empty\n");
}
else
{
printf("\nList is :-\nNULL ");
struct node *ptr = head;
while (ptr != NULL)
{
printf(" <--> |%d| ", ptr->data);
ptr = ptr->next;
}
printf("<--> NULL\n");
}
}
int main()
{
int element;
int choice = 0;
int position;
while (choice != 9)
{
printf("\n======================================== MENU========================================\n");
printf("\n1- Insert at beginning");
printf("\t\t\t2- Insert at end");
printf("\t\t\t3- Insert at position");
printf("\n4- Delete from beginning");
printf("\t5- Delete from end");
printf("\t\t\t 6- Print in Reverse Order");
printf("\n7- Search an Element");
printf("\t\t8- Display");
printf("\t\t\t\t 9- Exit");
printf("\n=======================================================================================\n");
printf("\nEnter your choice: ");
scanf("%d", &choice);
switch (choice)
{
case 1:
printf("Enter the element to be inserted: ");
scanf("%d", &element);
InsertAtBegin(element);
Display();
break;
case 2:
printf("Enter the element to be inserted: ");
scanf("%d", &element);
InsertAtEnd(element);
Display();
break;
case 3:
printf("Enter the element to be inserted: ");
scanf("%d", &element);
printf("Enter the position: ");
scanf("%d", &position);
InsertAtPosition(element, position);
Display();
break;
case 4:
printf("Deleted element is: %d\n", DeleteAtBegin());
Display();
break;
case 5:
printf("Deleted element is: %d\n", DeleteFromEnd());
Display();
break;
case 6:
DisplayReversed();
break;
case 7:
printf("Enter the element to be searched: ");
scanf("%d", &element);
if (Search(element) == -1)
{
printf("Element not found\n");
}
else
{
printf("Element found at position: %d\n", Search(element) + 1);
}
break;
case 8:
Display();
break;
case 9:
printf("Exiting...\n");
break;
default:
printf("Invalid choice!!!\n");
}
}
}