-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPila.cs
83 lines (70 loc) · 1.52 KB
/
Pila.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClaseNotaciones
{
internal class Pila
{
private int tam;
private int numEle;
private Object[] Arreglo;
public Pila(int tam)
{
this.tam = tam;
this.numEle = 0;
Arreglo = new Object[tam];
}
public void Apilar(Object elemento)
{
Arreglo[numEle++] = elemento;
}
public Object Desapilar()
{
if (numEle != 0 && numEle > 0)
return Arreglo[--numEle];
else return null;
}
public bool Vacia()
{
return numEle == 0;
}
public bool Llena()
{
return numEle == tam;
}
public Object Cima()
{
return Arreglo[numEle - 1];
}
public bool minElem()
{
return numEle >= 2;
}
public int getTam()
{
return tam;
}
public void setTam(int tam)
{
this.tam = tam;
}
public int getNumEle()
{
return numEle;
}
public void setNumEle(int numEle)
{
this.numEle = numEle;
}
public Object[] getArreglo()
{
return Arreglo;
}
public void setArreglo(Object[] Arreglo)
{
this.Arreglo = Arreglo;
}
}
}