forked from nazirmohd2006/NewRepository
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUpdatedDoublyLinkedList.cpp
More file actions
140 lines (135 loc) · 3.85 KB
/
UpdatedDoublyLinkedList.cpp
File metadata and controls
140 lines (135 loc) · 3.85 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
#include<iostream>
using namespace std;
class Node
{
public:
int data;
Node *next, *prev;
};
class DList
{
Node *START, *LAST;
public:
DList()
{
START = LAST = NULL;
}
Node* createNode(int n)
{
Node *tmp = new Node;
tmp->data = n;
tmp->next = tmp->prev = NULL;
return tmp;
}
void insertNode(){
int num;
Node *newNode, *curr = START, *bck = NULL;
cout<<"Enter number to insert"<<endl;
cin>>num;
newNode = createNode(num);
if(START == NULL){
START = LAST = newNode;
cout<<"First node added "<<endl;
}
else{
while(curr != NULL && num > curr->data)
{
bck = curr;
curr = curr->next;
}
if(bck == NULL){
newNode->next = START;
START->prev = newNode;
START = newNode;
cout<<"Node added at beginning"<<endl;
}
else if(curr == NULL){
bck->next = newNode;
newNode->prev = bck;
LAST = newNode;
cout<<"Node added at last"<<endl;
}
else{
bck->next = newNode;
newNode->next = curr;
curr->prev = newNode;
newNode->prev = bck;
cout<<"Node added between two nodes"<<endl;
}
}
}
void deleteNode(){
int num;
Node *curr = START, *bck = NULL;
cout<<"Enter number to delete"<<endl;
cin>>num;
if(START == NULL)
cout<<"List is empty"<<endl;
else{
while(curr != NULL && num != curr->data){
bck = curr;
curr = curr->next;
}
if(bck == NULL){
START = START->next;
if(START != NULL)
START->prev = NULL;
delete curr;
cout<<"Node deleted from front"<<endl;
}
else if(curr->next == NULL){
LAST = LAST->prev;
LAST->next = NULL;
delete curr;
cout<<"Node deleted from last"<<endl;
}
else{
bck->next = curr->next;
curr->next->prev = bck;
delete curr;
cout<<"Node deleted from between two nodes"<<endl;
}
}
}
void printList(){
Node *curr = START;
if(START == NULL)
cout<<"List is empty"<<endl;
else{
cout<<"List in forward direction : "<<endl;
while(curr != NULL){
cout<<curr->data<<" ";
curr = curr->next;
}
cout<<endl;
cout<<"List in backward direction : "<<endl;
curr = LAST;
while(curr != NULL){
cout<<curr->data<<" ";
curr = curr->prev;
}
cout<<endl;
}
}
};
main()
{
int opns;
DList dl;
do{
cout<<"1. Insert Node\n2. Print List\n3. Delete Node\n0. Exit"<<endl;
cin>>opns;
switch(opns)
{
case 1:
dl.insertNode();
break;
case 2:
dl.printList();
break;
case 3:
dl.deleteNode();
break;
}
}while(opns != 0);
}