-
Notifications
You must be signed in to change notification settings - Fork 0
/
link list.txt
138 lines (116 loc) · 1.56 KB
/
link list.txt
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
#include<iostream>
using namespace std;
struct node
{
int data;
node *next;
};
class LL
{
private:
node *temp, *head, *n, *temp2;
public:
LL()
{
temp = head = NULL;
}
void add()
{
if (head == NULL)
{
head= new node;
temp = head;
cout << "Enter the data: ";
cin >> temp->data;
temp->next = NULL;
}
else
{
n = new node;
temp->next = n;
cout << "Enter the data: ";
cin >> n->data;
temp = temp->next;
temp->next = NULL;
}
}
void print()
{
temp = head;
while (temp!= NULL)
{
cout << temp->data;
temp = temp->next;
}
}
void insert()
{
cout << "Enter the data of insertion: ";
int search;
cin >> search;
temp = head;
while (temp->next != NULL)
{
if (temp->data ==search)
{
temp2 = new node;
cout << "Enter the data1: ";
cin >> temp2->data;
temp2->next = temp->next;
temp->next = temp2;
break;
}
else
{
temp = temp->next;
}
}
if (temp->data != search)
{
cout << "Data not found" << endl;
}
}
void del()
{
cout << "Enter the data to delete: ";
int d;
cin >> d;
temp = head;
temp2 = temp->next;
if (temp->data == d)
{
temp = temp->next;
head = temp;
}
else
{
while (temp->next != NULL)
{
if (temp2->data == d)
{
temp->next = temp2->next;
delete temp2;
break;
}
else
{
temp2 = temp2->next;
temp = temp->next;
}
}
}
}
};
void main()
{
LL l;
l.add();
l.add();
l.add();
l.add();
l.add();
l.add();
l.del();
l.insert();
l.print();
}