-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArStack.java
70 lines (62 loc) · 1.25 KB
/
ArStack.java
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
// Stack
public class ArStack implements Stack
{
private Object[] v;
private int vSize;
public ArStack()
{
makeEmpty();
}
// rimuove l'elemento in cima alla pila
public Object pop() throws EmptyStackException
{
if (isEmpty())
{
throw new EmptyStackException();
}
Object obj = top();
v[vSize - 1] = null;
vSize--;
return obj;
}
// inserisce un elemento in cima alla pila
public void push(Object obj)
{
if ( vSize == v.length)
{
Object[] newV = new Object[v.length * 2];
for(int i = 0; i < v.length; i++)
{
v[i] = newV[i];
v = newV;
}
}
v[vSize] = obj;
vSize++;
}
// ispeziona l'elemeno in cima alla pila
public Object top() throws EmptyStackException
{
if (isEmpty())
{
throw new EmptyStackException();
}
return (vSize - 1);
}
//controlla se il contenitore è vuoto
public boolean isEmpty()
{
return (vSize == 0);
}
// crea un contenitore vuoto
public void makeEmpty()
{
Object[] v = new Object[1];
vSize = 0;
}
//restituisce il numero di elementi
public int size()
{
return vSize;
}
}