-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpointers-task.cpp
226 lines (195 loc) · 3.97 KB
/
pointers-task.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
#include <iostream>
#include <cstdlib>
using namespace std;
struct node
{
int data;
struct node *next;
};
node *head= NULL;
int count()
{
node *n;
int c=0;
n=head;
while(n!=NULL)
{
n=n->next;
c++;
}
return c;
}
void appendNode(int num)
{
node *temp,*right;
temp = new node;
temp->data=num;
if(head == NULL)
{
temp->next = NULL;
head = temp;
}
else
{
right=head;
while(right->next != NULL)
right=right->next;
right->next =temp;
right=temp;
right->next=NULL;
}
}
void addFirst( int num )
{
node *temp;
temp = new node;
temp->data=num;
if (head== NULL)
{
head=temp;
head->next=NULL;
}
else
{
temp->next=head;
head=temp;
}
}
void addAfter(int num, int loc)
{
int i;
struct node *temp,*left,*right;
right=head;
for(i=1;i<loc;i++)
{
left=right;
right=right->next;
}
temp = new node;
temp->data=num;
left->next=temp;
left=temp;
left->next=right;
return;
}
int delNode(int num)
{
node *temp, *prev;
temp=head;
while(temp!=NULL)
{
if(temp->data==num)
{
if(temp==head)
{
head=temp->next;
delete temp;
return 1;
}
else
{
prev->next=temp->next;
delete temp;
return 1;
}
}
else
{
prev=temp;
temp= temp->next;
}
}
return 0;
}
void displayList()
{
node *r;
r=head;
if(r==NULL)
{
return;
}
while(r!=NULL)
{
cout<<"[ "<<r->data<<" ]"<<" -> ";
r=r->next;
}
printf("NULL\n");
}
int main(int argc, char** argv)
{
int i,num;
node *n;
head=NULL;
while(1)
{
cout<<"\n\t\t\t\tList Operations\n";
cout<<"\t\t\t\t=================\n";
cout<<"\t\t\t\t1.Add Node at Start\n";
cout<<"\t\t\t\t2.Append Node\n";
cout<<"\t\t\t\t3.Delete Node\n";
cout<<"\t\t\t\t4.Display List\n";
cout<<"\t\t\t\t5.Size of the List?\n";
cout<<"\t\t\t\t6.Clear Screen\n";
cout<<"\t\t\t\t7.Exit\n";
cout<<"\n\t\t\t\tEnter your choice : ";
cin>>i;
if(i<=0)
{
cout<<"\n\t\tEnter only an Integer\n";
exit(0);
}
else
{
switch(i)
{
case 1:
cout<<"\nEnter the number to insert : ";
cin>>num;
addFirst(num);
break;
case 2:
cout<<"\nEnter the number to insert : ";
cin>>num;
appendNode(num);
break;
case 3:
if(head==NULL)
cout<<"\nList is Empty\n";
else
{
cout<<"\nEnter the number to delete : ";
cin>>num;
if(delNode(num))
cout<<"\n"<<num<<" deleted successfully \n";
else
cout<<"\n"<<num<<" not found in the list\n";
}
break;
case 4:
if(head==NULL)
{
cout<<"\nList is Empty\n";
}
else
{
cout<<"\nElement(s) in the list are : \n\n";
}
displayList();
cout<<"\n";
break;
case 5:
cout<<"\nSize of the list is : "<<count()<<"\n";
break;
case 6:
system("cls");
break;
case 7:
return 0;
default:
cout<<"\nInvalid option\n";
}
}
}
return 0;
}