-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.hpp
219 lines (208 loc) · 3.6 KB
/
list.hpp
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
#include <iostream>
using namespace std;
namespace sebas{
template <class T>
class nodel {
public:
T info;
nodel<T> *next;
};
template <class T>
class list {
nodel<T> *pFirst;
int n;
public:
typedef nodel<T> *pos;
list(){
n = 0;
pFirst = NULL;
}
~list(){
nodel<T> *pTemp;
while(pFirst != NULL){
pTemp = pFirst;
pFirst = pFirst->next;
delete pTemp;
}
}
bool isEmpty(){
return pFirst == NULL;
}
pos first(){
return pFirst;
}
pos last(){
return NULL;
}
void next(pos &pValue){
if (pValue != NULL)
pValue = pValue->next;
}
T* get(pos pValue){
if (pValue != NULL)
return &(pValue->info);
return NULL;
}
void insert(T &x, pos pValue){
nodel<T> *pNew = new nodel<T>();
pNew->info = x;
pNew->next = pValue;
if (pFirst == NULL || pValue == pFirst)
pFirst = pNew;
else{
nodel<T> *pTemp = pFirst;
while(pTemp->next != pValue)
pTemp = pTemp->next;
pTemp->next = pNew;
}
n++;
}
void insert(const T &x, pos pValue){
nodel<T> *pNew = new nodel<T>();
pNew->info = x;
pNew->next = pValue;
if (pFirst == NULL || pValue == pFirst)
pFirst = pNew;
else{
nodel<T> *pTemp = pFirst;
while(pTemp->next != pValue)
pTemp = pTemp->next;
pTemp->next = pNew;
}
n++;
}
void erase(pos pValue){
if (pValue == pFirst){
pFirst = pFirst->next;
}else{
nodel<T> *pTemp = pFirst;
while(pTemp->next != pValue)
pTemp = pTemp->next;
pTemp->next = pValue->next;
}
delete pValue;
n--;
}
int size(){
return n;
}
void print(){
cout<<"lista: "<<endl;
nodel<T> *pTemp = pFirst;
while(pTemp->next!= NULL){
cout<<pTemp->info<<endl;
pTemp=pTemp->next;
}
if(pTemp->next==NULL){
cout<<pTemp->info<<endl;
cout<<"empty"<<endl;
}
}
};
template <class T>
class stack:public list<T>{
public:
stack(){
}
~stack(){
}
bool isEmpty(){
return list<T>::isEmpty();
}
void push(T&x){
list<T>::insert(x,list<T>::first());
}
void push(const T &x){
list<T>::insert(x,list<T>::first());
}
void pop(){
list<T>::erase(list<T>::first());
}
int size(){
return list<T>::size();
}
T* top(){
return list<T>::get(list<T>::first());
}
void print(){
list<T>::print();
}
};
template<class T>
class queue:public list<T>{
public:
queue(){
}
~queue(){
}
bool isEmpty(){
return list<T>::isEmpty();
}
void enqueue(T&x){
list<T>::insert(x, list<T>::last());
}
void enqueue(const T &x){
list<T>::insert(x, list<T>::last());
}
void dequeue(){
list<T>::erase(list<T>::first());
}
int size(){
return list<T>::size();
}
T* head(){
return list<T>::get(list<T>::first());
}
void print(){
list<T>::print();
}
};
template <class T>
class dipolo:public list<T>{
public:
typedef nodel<T> *pos;
dipolo(){
}
~dipolo(){
}
bool isEmpty(){
return list<T>::isEmpty();
}
void insert(T&x,pos pValue){
list<T>::insert(x,pValue);
}
void insert(const T&x,pos pValue){
list<T>::insert(x,pValue);
}
void insertFirst(T&x){
list<T>::insert(x,list<T>::first());
}
void insertFirst(const T &x){
list<T>::insert(x,list<T>::first());
}
void insertLast(T&x){
list<T>::insert(x,list<T>::last());
}
void insertLast(const T &x){
list<T>::insert(x,list<T>::last());
}
void erasefirst(){
list<T>::erase(list<T>::first());
}
void eraselast(){
list<T>::erase(list<T>::last());
}
int size(){
return list<T>::size();
}
T* first(){
return list<T>::get(list<T>::first());
}
T* last(){
return list<T>::get(list<T>::last());
}
void print(){
list<T>::print();
}
};
}