-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArrayList.cpp
129 lines (108 loc) · 3.99 KB
/
ArrayList.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
#include "Header.h"
#include "ArrayList.h"
/********************************************
* @Description Hàm khởi tạo List rỗng có số phần tử tối đa là MAX_SIZE
********************************************/
template <class DataType>
ArrayList<DataType>::ArrayList() {
_iCapacity = MAX_SIZE;
_items = new DataType[_iCapacity];
_iSize = 0;
}
/********************************************
* @Description Hàm khởi tạo List rỗng có số phần tử tối đa là maxSize
* @parameter Số phần tử tối đa của List
* @attention Nếu maxSize <= 0 thì lấy giá trị mặc định là MAX_SIZE
********************************************/
template <class DataType>
ArrayList<DataType>::ArrayList(int maxSize) {
_iCapacity = maxSize > 0 ? maxSize : MAX_SIZE;
_items = new DataType[_iCapacity];
_iSize = 0;
}
/********************************************
* @Description Hàm hủy hủy cấp phát bộ nhớ cho items
********************************************/
template <class DataType>
ArrayList<DataType>::~ArrayList() {
delete[] _items;
}
/********************************************
* @Description Hàm lấy giá trị của phần tử thứ i
* @parameter Vị trí i(index) của phần tử muốn lấy ra
* @return Giá trị phần tử thứ i
********************************************/
template <class DataType>
DataType ArrayList<DataType>::getItem(int i) {
return _items[i];
}
/********************************************
* @Description Hàm lấy địa chỉ của phần tử thứ i
* @parameter Vị trí i(index) của phần tử muốn lấy ra
* @return Địa chỉ phần tử thứ i
********************************************/
template <class DataType>
DataType* ArrayList<DataType>::getPointerItem(int i) {
return &(_items[i]);
}
/********************************************
* @Description Hàm lấy số phần tử hiện tại của List
* @return Số lượng phần tử của List
********************************************/
template <class DataType>
int ArrayList<DataType>::getSize() {
return _iSize;
}
/********************************************
* @Description Hàm set giá trị item cho phần tử thứ i của List
* @parameter Vị trí i(index) của phần tử muốn set và giá trị item muốn set.
********************************************/
template <class DataType>
void ArrayList<DataType>::setItem(int i, DataType item) {
_items[i] = item;
}
/********************************************
* @Description Hàm set List có số phần tử tối đa là maxSize
* @parameter Số phần tử tối đa của List
* @attention Nếu maxSize <= 0 thì lấy giá trị mặc định là MAX_SIZE
********************************************/
template <class DataType>
void ArrayList<DataType>::setMaxSize(int maxSize) {
_iCapacity = maxSize > 0 ? maxSize : MAX_SIZE;
_items = new DataType[_iCapacity];
_iSize = 0;
}
/********************************************
* @Description Hàm hiển thị List
********************************************/
template <class DataType>
void ArrayList<DataType>::display() {
for (int i = 0; i < _iSize; i++) {
_items[i].display();
cout << endl;
}
}
/********************************************
* @Description Hàm hiển thị thông tin chi tiết của List
********************************************/
template <class DataType>
void ArrayList<DataType>::displayDetail() {
for (int i = 0; i < _iSize; i++) {
_items[i].displayDetail();
cout << endl;
}
}
/********************************************
* @Description Hàm thêm vào cuối danh sách phần tử có giá trị data
* @parameter Giá trị data muốn thêm
* @attention Nếu số lượng phần tử đầy (bằng số lượng phần tử tối đa) thì không thêm
********************************************/
template <class DataType>
void ArrayList<DataType>::add(DataType data) {
if (_iSize == _iCapacity) {
cout << "Khong the them, vui long thu lai." << endl;
return;
}
_items[_iSize] = data;
_iSize++;
}