-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStackArray.java
More file actions
66 lines (59 loc) · 815 Bytes
/
Copy pathStackArray.java
File metadata and controls
66 lines (59 loc) · 815 Bytes
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
public class StackArray {
int arr[];
int top,size;
public StackArray(int size)
{
this.size=size;
this.arr=new int[size];
this.top=-1;
}
public boolean isEmpty()
{
if(this.top==-1)
{
return true;
}
return false;
}
public boolean isFull() {
if(top==arr.length-1)
{
return true;
}
return false;
}
public void push(int x)
{
if(isFull())
{
System.out.println("Overflow");
}
else
{
arr[++top]=x;
}
}
public int pop()
{
if(isEmpty())
{
System.out.println("underflow");
return -1;
}
else
{
return arr[top--];
}
}
public void peak()
{
if(isEmpty())
{
System.out.println("No element to peak");
}
else
{
System.out.println(arr[top]);
}
}
}