-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinked1.cpp
217 lines (213 loc) · 2.94 KB
/
linked1.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 data ;
struct node*next;
}
*start, *last, *temp, *pre, *newnode;
void initialize()
{
start=NULL;
last=NULL;
cout<<"\n LINKED LIST IS INITIALIZED";
}
void underflow()
{
if (start==NULL)
cout<<"\n Linked List is empty";
else
cout<<"\n Linked List is not empty";
}
void insert()
{
temp=(struct node*)malloc(sizeof(struct node*));
if (temp==NULL)
cout<<"\n Node not created";
else
{
int a;
cout<<"\n Enter DATA into the Node";
cin>>a;
temp->data=a;
temp->next=NULL;
if(last!=NULL)
last->next=temp;
else
{
start=temp;
}
last=temp;
}
}
void deletion()
{
int x;
if(start==NULL)
cout<<"\n Linked list is empty";
else
{
pre=NULL;
temp=start;
cout<<"\n enter element you want to delete";
cin>>x;
while(temp!=NULL && temp->data!=x)
{
pre=temp;
temp=temp->next;
}
if(temp==NULL)
cout<<"\n Elemenet not found";
else
{
if (start==temp)
start=start->next;
else
{
pre->next=temp->next;
if(last==temp)
last=pre;
}
}
}
cout<<"\n Element is deleted";
free(temp);
}
void before()
{
int x, b;
if (start==NULL)
cout<<"\n Linked List is empty";
else
{
pre=NULL;
temp=start;
cout<<"\n Enter element before which you want to insert new element";
cin>>x;
while(temp!=NULL&&temp->data!=x)
{
pre=temp;
temp=temp->next;
}
if(temp==NULL)
{
cout<<"\n element not found";
}
else
{
newnode=(struct node*)malloc(sizeof(struct node));
if(newnode==NULL)
cout<<"\n Node not allocated";
else
{
cout<<"\n Enter element you want to insert into new node";
cin>>b;
newnode->data=b;
newnode->next=temp;
}
}
if(pre!=NULL)
pre->next=newnode;
else
{
start=newnode;
}
cout<<"\n New node is linked/attached";
}
}
void after()
{
int x, b;
if (start==NULL)
cout<<"\n Linked List is empty";
else
{
temp=start;
cout<<"\n Enter element after which you want to insert new element";
cin>>x;
while(temp!=NULL&&temp->data!=x)
{
temp=temp->next;
}
if(temp==NULL)
{
cout<<"\n element not found";
}
else
{
newnode=(struct node*)malloc(sizeof(struct node));
if(newnode==NULL)
cout<<"\n Node not allocated";
else
{
cout<<"\n Enter element you want to insert into new node";
cin>>b;
newnode->data=b;
newnode->next=temp->next;
temp->next=newnode;
}
}
if(temp==last)
{
last=newnode;
}
cout<<"\n New node is attached/linked.";
}
}
void display()
{
if (start==NULL)
cout<<"\n Linked list is empty";
else
{
temp=start;
cout<<"\n Elemenets of linked list are:";
while(temp!=NULL)
{
cout<<temp->data<<"->";
temp=temp->next;
}
}
}
int main()
{
int n;
do
{
cout<<"\n enter 1 for Initialize";
cout<<"\n enter 2 for underflow";
cout<<"\n enter 3 for Insertion";
cout<<"\n enter 4 for deletion";
cout<<"\n enter 5 for insert before an element";
cout<<"\n enter 6 for insert before an element";
cout<<"\n enter 7 for Display";
cout<<"\n Enter Your Choice";
cin>>n;
switch(n)
{
case 1:
initialize();
break;
case 2:
underflow();
break;
case 3:
insert();
break;
case 4:
deletion();
break;
case 5:
before();
break;
case 6:
after();
break;
case 7:
display();
break;
default:
cout<<"\n Your choice is invalid";
}}
while(n<8);
}