This repository has been archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
DS_LINKLIS04.cpp
191 lines (179 loc) · 3.69 KB
/
DS_LINKLIS04.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
// implementing linked list and its operations
#include <iostream>
using namespace std;
struct node
{
int data;
struct node *next;
};
void insert(struct node **head, int data)
{
struct node *new_node=(struct node *)malloc(sizeof(struct node));
while(*head!=NULL)
{
head=&((*head)->next);
}
new_node->data=data;
new_node->next=NULL;
*head=new_node;
}
void insert_first(struct node **head, int data)
{
struct node *new_node=(struct node *)malloc(sizeof(struct node));
new_node->data=data;
new_node->next=*head;
*head=new_node;
}
void print(struct node *head)
{
while (head != NULL)
{
cout << head->data;
head = head->next;
if(head!=NULL)
{
cout<<", ";
}
}
cout << endl;
}
void insert_before(struct node **head, int data, int before)
{
struct node *new_node=(struct node *)malloc(sizeof(struct node));
while(*head!=NULL)
{
if((*head)->data==before)
{
new_node->data=data;
new_node->next=*head;
*head=new_node;
break;
}
head=&((*head)->next);
}
}
void insert_after(struct node **head, int data, int after)
{
struct node *new_node=(struct node *)malloc(sizeof(struct node));
while(*head!=NULL)
{
if((*head)->data==after)
{
new_node->data=data;
new_node->next=(*head)->next;
(*head)->next=new_node;
break;
}
head=&((*head)->next);
}
}
void print_location_of(struct node *head, int data)
{
int count=0;
while(head!=NULL)
{
if(head->data==data)
{
cout <<count+1<< "th Location"<< endl;
break;
}
count++;
head=head->next;
}
}
void delete_by_data(struct node **head, int data)
{
while(*head!=NULL)
{
if((*head)->data==data)
{
*head=(*head)->next;
break;
}
head=&((*head)->next);
}
}
void delete_before(struct node **head, int data)
{
while(*head!=NULL)
{
if((*head)->next->data==data)
{
*head=(*head)->next;
break;
}
head=&((*head)->next);
}
}
void delete_after(struct node **head, int data)
{
while(*head!=NULL)
{
if((*head)->data==data)
{
delete_by_data(&((*head)->next),(*head)->next->data);
}
head=&((*head)->next);
}
}
void print_count(struct node *head)
{
int count=0;
while(head!=NULL)
{
count++;
head=head->next;
}
cout << count <<" Counts"<< endl;
}
void delete_first(struct node **head)
{
*head=(*head)->next;
}
void delete_last(struct node **head)
{
while(*head!=NULL)
{
if((*head)->next->next==NULL)
{
(*head)->next=NULL;
break;
}
head=&((*head)->next);
}
}
int main(){
struct node *head = NULL;
int temp,temp2;
int a[11]={5, 3, 4, 8, 13, 55, 79, 31, 27, 87};
for(int i=0;i<10;i++)
{
insert(&head,a[i]);
}
cin >> temp2;
insert_first(&head, temp2);
cin >> temp;
insert(&head, temp);
cin >> temp2;
cin >> temp;
insert_before(&head, temp, temp2);
cin >> temp2;
cin >> temp;
insert_after(&head, temp, temp2);
cin >> temp;
print_location_of(head, temp);
print(head);
print_count(head);
delete_first(&head);
delete_last(&head);
cin >> temp;
delete_by_data(&head, temp);
cin >> temp;
delete_before(&head, temp);
cin >> temp;
delete_after(&head, temp);
print(head);
print_count(head);
// cin >> temp;
// insert(&head, temp);
}