-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNode.cpp
31 lines (25 loc) · 808 Bytes
/
Node.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
#include "Node.h"
#include "Header.h"
/********************************************
* @Description Hàm khởi tạo một Node có giá trị là data
* @parameter Giá trị data
********************************************/
template <class DataType>
Node<DataType>::Node(DataType data) {
_pNext = NULL;
_data = data;
}
/********************************************
* @Description Hàm hiển thị thông tin một Node
********************************************/
template <class DataType>
void Node<DataType>::display() {
_data.display();
}
/********************************************
* @Description Hàm hiển thị thông tin chi tiết một Node
********************************************/
template <class DataType>
void Node<DataType>::displayDetail() {
_data.displayDetail();
}