-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stack.tpp
72 lines (59 loc) · 983 Bytes
/
Stack.tpp
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
/*
Archivo: Stack.tpp
Autor: David T. Montoya
start date: 2020-11-20
last date modified 2021-3-13
Version: 0.1
licence: GPL
*/
template<class TIPO>
Stack<TIPO>::Stack()
{
this-> Top=nullptr;
this->length=0;
}
template<class TIPO>
void destructor(TIPO *pointer)
{
if (pointer == nullptr) {
}
else
{
TIPO *aux= pointer->pointerNext();
destructor(aux);
delete pointer;
}
}
template<class TIPO>
Stack<TIPO>::~Stack()
{
destructor(Top);
}
template<class TIPO>
TIPO Stack<TIPO>::top()
{
return Top->value();
}
template<class TIPO>
void Stack<TIPO>::push(TIPO item)
{
Element<TIPO> *aux=new Element<TIPO>(item, Top);
length++;
Top=aux;
}
template<class TIPO>
TIPO Stack<TIPO>::pop()
{
length--;
Element<TIPO> *aux=Top;
TIPO aux2=aux->value();
Top= aux->pointerNext();
delete aux;
return aux2;
}
template<class TIPO>
int Stack<TIPO>::len()
{
return length;
}