-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path23.LinkedList.cpp
247 lines (212 loc) · 6.2 KB
/
23.LinkedList.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#include <iostream>
using namespace std;
struct Node
{
int data;
Node *next;
};
Node *headNode = NULL;
Node *currentNode = NULL;
bool isEmpty();
void insertNode(int data);
void insertNodeBack(int data);
void deleteFromFront();
void deleteFromEnd();
void deleteAll();
void printNode();
int main()
{
int pilihanMenu;
int data;
do
{
cout << ">>> PILIHAN MENU SINGLY LINKED LIST <<<" << endl << endl;
cout << "1. Menambahkan Node dari depan" << endl;
cout << "2. Menghapus Node dari Depan" << endl;
cout << "3. Menghapus Node dari Belakang" << endl;
cout << "4. Mengosongkan Node" << endl;
cout << "5. Menampilkan Node" << endl;
cout << "6. Selesai" << endl << endl;
cout << "7. Menambahkan Node dari belakang" << endl;
cout << "Masukkan pilihan Anda : "; cin >> pilihanMenu;
cout << endl;
switch (pilihanMenu)
{
case 1: // menambah node
cout << "Masukkan data : "; cin >> data;
insertNode(data);
break;
case 2: // menghapus node dari depan
if (isEmpty())
{
cout << "List masih kosong !!!" << endl << endl;
}
else
{
deleteFromFront();
}
break;
case 3: // menghapus node dari belakang
if (isEmpty())
{
cout << "List masih kosong !!!" << endl << endl;
}
else
{
deleteFromEnd();
}
break;
case 4: // mengosongkan node
if (isEmpty())
{
cout << "List masih kosong !!!" << endl << endl;
}
else
{
deleteAll();
}
break;
case 5: // menampilkan node
if (isEmpty())
{
cout << "List masih kosong !!!" << endl << endl;
}
else
{
printNode();
}
break;
case 6:
break;
case 7:
cout << "Masukkan data : "; cin >> data;
insertNodeBack(data);
break;
default:
cout << "Menu yang Anda pilih tidak terdaftar" << endl << endl;
break;
}
} while (pilihanMenu != 6);
cout << endl;
system("pause");
return 0;
}
bool isEmpty()
{
return (headNode == NULL);
}
void insertNode(int data)
{
// deklarasi pointer newNode;
Node *newNode = NULL;
// mengalokasikan memory untuk pointer newNode
newNode = new Node;
// isikan data ke node yang baru
newNode->data = data;
if (isEmpty()) // node masih kosong
{
// node baru otomatis menjadi head node
headNode = newNode;
}
else // sudah ada node
{
// hubungkan pointer next node aktif (current node)
// ke node yg baru
currentNode->next = newNode;
}
// set node baru sebagai node aktif
currentNode = newNode;
// set pointer next node terakhir menjadi NULL
currentNode->next = NULL;
cout << "Node berhasil ditambahkan" << endl << endl;
}
void insertNodeBack(int data)
{
// deklarasi pointer newNode;
Node *newNode = NULL;
Node *bantuin = headNode;
// mengalokasikan memory untuk pointer newNode
newNode = new Node;
// isikan data ke node yang baru
newNode->data = data;
if (isEmpty()) // node masih kosong
{
// node baru otomatis menjadi head node
headNode = newNode;
}
else // sudah ada node
{
// hubungkan pointer next node aktif (current node)
// ke node yg baru
newNode->next = headNode;
}
// set node baru sebagai node aktif
headNode=newNode;
// set pointer next node terakhir menjadi NULL
headNode->next = bantuin;
cout << "Node berhasil ditambahkan" << endl << endl;
}
void deleteFromFront()
{
if (!isEmpty())
{
// deklarasi var bantu untuk menampung headNode
Node *hapusNode = headNode;
// pindahkan headNode ke node berikutnya
headNode = headNode->next;
// hapus headNode yang lama
delete hapusNode;
cout << "Node berhasil dihapus" << endl << endl;
}
}
void deleteFromEnd()
{
// jika node tinggal satu
if (headNode == currentNode)
{
headNode = NULL;
currentNode = NULL;
return;
}
// deklarasi pointer bantu untuk menampung head node
Node *bantu = headNode;
// deklarasi pointer hapus untuk menampung current node
Node *hapusNode = currentNode;
// lakukan perulangan sebelum mencapai akhir node
while (bantu->next != currentNode)
{
bantu = bantu->next;
}
currentNode = bantu;
currentNode->next = NULL;
delete hapusNode;
cout << "Node berhasil dihapus" << endl << endl;
}
void deleteAll()
{
Node *bantu, *hapusNode;
bantu = headNode;
// lakukan perulangan sebelum mencapai akhir node
while (bantu->next != currentNode)
{
hapusNode = bantu;
bantu = bantu->next;
delete hapusNode;
}
headNode = NULL;
currentNode = NULL;
cout << "Node berhasil dikosongkan" << endl << endl;
}
void printNode()
{
// deklarasi pointer awal node untuk menampung head node
Node *awalNode = headNode;
int i = 1;
while (awalNode != NULL)
{
cout << "Data pada node #" << i << " = " << awalNode->data << endl;
awalNode = awalNode->next;
i++;
}
cout << endl;
}