-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuanLy.h
162 lines (145 loc) · 2.99 KB
/
QuanLy.h
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
#include<iostream>
#include<string>
#include<assert.h>
#pragma once
using namespace std;
template<class T>
class QuanLy
{
protected:
T *p;
int n;
public:
QuanLy();
QuanLy(int);
~QuanLy();
void Erase();
T& operator[](int);
int Size() const;
void Reallocate(int);
void Resize(int);
void Delete(string);
virtual int CheckMS(string) = 0;
void Insert(T,int);
void InsertFirst(T);
void Add(T);
virtual void Update(string) = 0;
virtual void Show() = 0;
};
template<class T>
QuanLy<T>::QuanLy()
{
this->n = 0;
this->p = nullptr;
}
template<class T>
QuanLy<T>::QuanLy(int length)
{
this->n = length;
assert(this->n >= 0);
if(length > 0){
this->p = new T[this->n];
}
else{
this->p = nullptr;
}
}
template<class T>
QuanLy<T>::~QuanLy()
{
delete[] this->p;
}
template<class T>
void QuanLy<T>::Erase(){
delete[] this->p;
this->p = nullptr;
this->n = 0;
}
template<class T>
T& QuanLy<T>::operator[](int index){
assert(index >= 0 && index < this->n);
return *(this->p + index);
}
template<class T>
int QuanLy<T>::Size() const{
return this->n;
}
template<class T>
void QuanLy<T>::Reallocate(int newlength){
Erase();
if(newlength <= 0) return;
this->p = new T[newlength];
this->n = newlength;
}
template<class T>
void QuanLy<T>::Resize(int newlength){
if(newlength == this->n) return;
if(newlength <= 0){
Erase(); return;
}
T *data = new T[newlength];
if(this->n >0){
int maxlength = (newlength > this->n) ? n : newlength;
for (int i = 0; i < maxlength; i++)
{
data[i] = (*this)[i];
}
}
delete[] this->p;
this->p = data;
this->n = newlength;
}
template<class T>
void QuanLy<T>::Delete(string m){
int index = CheckMS(m);
if(index >= 0){
if(this->n == 1){
delete[] this->p;
this->p = nullptr;
}
else{
T *temp = new T[n];
for(int i = 0; i < this->n; i++){
*(temp + i) = *(this->p + i);
}
delete[] this->p;
this->p = new T[n-1];
for(int i = 0 ; i < this->n-1; i++){
if(i < index){
*(this->p +i) = *(temp + i);
}
else{
*(this->p + i) = *(temp + i + 1);
}
}
delete[] temp;
}
this->n--;
}
else return;
}
template<class T>
void QuanLy<T>::Insert(T t,int index){
assert(index >= 0 && index <= this->n);
T *data = new T[this->n + 1];
for (int i = 0; i < index; i++)
{
data[i] = (*this)[i];
}
data[index] = t;
for (int i = index; i < this->n; i++)
{
data[i+1] = (*this)[i];
}
delete[] this->p;
this->p = data;
++this->n;
}
template<class T>
void QuanLy<T>::InsertFirst(T t){
Insert(t,0);
}
template<class T>
void QuanLy<T>::Add(T t){
Insert(t,this->n);
}