-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinkedList.cpp
168 lines (144 loc) · 4.58 KB
/
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
#include "Header.h"
#include "LinkedList.h"
#include "Node.h"
/********************************************
* @Description Hàm khởi tạo Linked List
********************************************/
template <class DataType>
LinkedList<DataType>::LinkedList() {
_pHead = NULL;
_pTail = NULL;
_iSize = 0;
}
/********************************************
* @Description Hàm hủy Linked List
********************************************/
template <class DataType>
LinkedList<DataType>::~LinkedList() {
}
/********************************************
* @Description Hàm thêm vào đuôi phần tử có giá trị data
* @parameter Phần tử có giá trị data
* @attention: Nếu Linked List đang trống thì phần tử đầu bằng phần tử đuôi và bằng phần tử được thêm
********************************************/
template <class DataType>
void LinkedList<DataType>::addTail(DataType data) {
Node<DataType>* pAdd = new Node<DataType>(data);
if (_pHead == NULL) {
_pHead = pAdd;
_pTail = pAdd;
}
else {
_pTail->_pNext = pAdd;
_pTail = _pTail->_pNext;
}
_iSize++;
}
/********************************************
* @Description Hàm xóa phần tử node trong Linked List
* @parameter Node muốn xóa
* @attention Nếu node là phần tử đầu, thì gọi removeHead, nếu node có tồn tại trong danh sách thì mới thực hiện xóa
********************************************/
template <class DataType>
void LinkedList<DataType>::remove(Node<DataType>* node) {
if (node == _pHead) {
removeHead();
}
else {
if (node != NULL) {
Node<DataType>* pSearchPre = searchPre(node);
if (pSearchPre != NULL) {
pSearchPre->_pNext = node->_pNext;
if (pSearchPre->_pNext == NULL) {
_pTail = pSearchPre;
}
delete node;
_iSize--;
}
}
}
}
/********************************************
* @Description Hàm xóa phần tử đầu trong Linked List
* @attention Nếu LinkedList có tồn tại phần tử đầu trong danh sách thì mới thực hiện xóa
********************************************/
template <class DataType>
void LinkedList<DataType>::removeHead() {
if (_pHead != NULL) {
Node<DataType>* pTemp = _pHead;
_pHead = _pHead->_pNext;
if (_pHead == NULL) {
_pTail = NULL;
}
delete pTemp;
_iSize--;
}
}
/********************************************
* @Description Hàm tìm phần tử đứng trước một node trong Linked List
* @parameter Node muốn tìm
* @return Node đứng trước Node cần tìm
* @attention Nếu node là phần tử đầu hoặc node không tồn tại thì không thực hiện tìm kiếm
********************************************/
template <class DataType>
Node<DataType>* LinkedList<DataType>::searchPre(Node<DataType>* node) {
if (node == NULL || node == _pHead) {
return NULL;
}
Node<DataType>* pWalker = _pHead;
while (pWalker != NULL) {
if (pWalker->_pNext == node) {
return pWalker;
}
pWalker = pWalker->_pNext;
}
return pWalker;
}
/********************************************
* @Description Hàm lấy số lượng phần tử đang có trong Linked List
* @return Số lượng phần tử của Linked List
********************************************/
template <class DataType>
int LinkedList<DataType>::getSize() {
return _iSize;
}
/********************************************
* @Description Hàm hiển thị từng phần tử trong Linked List
********************************************/
template <class DataType>
void LinkedList<DataType>::display() {
Node<DataType>* pWalker = _pHead;
while (pWalker != NULL) {
pWalker->display();
cout << endl;
pWalker = pWalker->_pNext;
}
}
/********************************************
* @Description Hàm hiển thị chi tiết từng phần tử trong Linked List
********************************************/
template <class DataType>
void LinkedList<DataType>::displayDetail() {
Node<DataType>* pWalker = _pHead;
while (pWalker != NULL) {
pWalker->displayDetail();
cout << endl;
pWalker = pWalker->_pNext;
}
}
/********************************************
* @Description Hàm lấy phần tử đầu trong Linked List
* @return Phần tử đầu trong LinkedList
********************************************/
template <class DataType>
Node<DataType>* LinkedList<DataType>::getHead() {
return _pHead;
}
/********************************************
* @Description Hàm lấy phần tử đuôi trong Linked List
* @return Phần tử đuôi trong LinkedList
********************************************/
template <class DataType>
Node<DataType>* LinkedList<DataType>::getTail() {
return _pTail;
}