-
Notifications
You must be signed in to change notification settings - Fork 0
/
pila_enla.hpp
140 lines (97 loc) · 1.49 KB
/
pila_enla.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
#ifndef PILA_ENLA_H
#define PILA_ENLA_H
#include <cassert>
template<typename T>
class Pila
{
public:
Pila();
Pila(const Pila<T>& P);
Pila<T>& operator=(const Pila<T>& P);
bool llena()const;
bool vacia()const;
const T& tope()const;
void pop();
void push(const T& x);
~Pila();
private:
struct nodo
{
T elto;
nodo* sig;
nodo(const T& e, nodo* p = 0) : elto(e), sig(p)
{}
};
nodo* tope_;
void copiar(const Pila<T>& P);
};
template<typename T>
Pila<T>::Pila():tope_(0)
{}
template<typename T>
Pila<T>::Pila(const Pila<T>& P):tope_(0)
{
copiar(P);
}
template<typename T>
Pila<T>& Pila<T>::operator =(const Pila<T>& P)
{
if(this != &P)
{
this ->~Pila();
copiar(P);
}
return *this;
}
template<typename T>
inline bool Pila<T>::vacia()const
{
return (!tope_);
}
template<typename T>
inline const T& Pila<T>::tope() const
{
assert(!vacia());
return tope_->elto;
}
template<typename T>
inline void Pila<T>::pop()
{
assert(!vacia());
nodo* p = tope_;
tope_ = p->sig;
delete p;
}
template<typename T>
inline void Pila<T>::push(const T& x)
{
tope_= new nodo(x,tope_);
}
template<typename T>
Pila<T>::~Pila()
{
nodo* p;
while(tope_)
{
p = tope_->sig;
delete tope_;
tope_= p;
}
}
template<typename T>
void Pila<T>::copiar(const Pila<T>& P)
{
if(this!=&P && !P.vacia())
{
tope_ = new nodo(P.tope());
nodo* p = tope_;
nodo* q = P.tope_->sig;
while(q)
{
p->sig = new nodo(q->elto);
p = p->sig;
q = q->sig;
}
}
}
#endif // pila_enla_h