-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathArrayStack.java
97 lines (90 loc) · 1.71 KB
/
ArrayStack.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
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
//ARRAY STACK
public class ArrayStack
{
int[] stack;
int top;
public ArrayStack()
{
this(5);
}
/**
* Constructor for initializing the size
* */
public ArrayStack(int size)
{
stack = new int[size];
top=-1;
}
/**
* push(int)
* it will push element to the top of the stack
* @return void
* */
public void push(int value)
{
if(top+1==stack.length)
{
System.out.println("STACK OVERFLOW");
System.exit(0);
}
stack[++top]=value;
}
/**
* pop()
* it will take out one element of the stack
* @return int
* */
public int pop()
{
if(isEmpty())
{
System.out.println("STACK UNDERFLOW");
System.exit(0);
}
int temp = stack[top];
// stack[top]=0; //initializing it to zero
top--;
return temp;
}
/**
* top()
* it will convey the top element of the stack
* @return int
* */
public int top()
{
int temp = stack[top];
return temp;
}
/**
* isEmpty()
* it will convey whether the stack is empty or not
* @return boolean
* */
public boolean isEmpty()
{
return top==-1;
}
/**
* size()
* it will convey the size of the stack
* @return int
**/
public int size()
{
return top+1;
}
/**
* print()
* it will print the stack
* @return void
**/
public void print()
{
for(int i=top;i>=0;i--)
{
System.out.println("| "+stack[i]+" |");
}
System.out.println("-----");
}
}