-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStack.java
86 lines (80 loc) · 1.32 KB
/
Stack.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
public class Stack {
int maxSize=5;
int top=-1;
int a;
int[] arr = new int[5];
public void push (int number)
{
if (isfull()== true)
{
System.out.println("Stack overflow");
}
else {
top++;
arr[top] = number;
}
}
public void show()
{
int i;
if (top ==-1)
{
System.out.println("Stack empty");
}
else
System.out.println("Elements in stack");
for (i=0; i<=top; i++)
{
System.out.println(arr[i] + "");
}
System.out.println("");
}
public boolean isEmpty()
{
if (top==-1)
{
return true;
}
else
return false;
}
public void peak()
{
if (top>=0)
{
System.out.println(arr[top]);
}
else
{
System.out.println("No elements is array");
}
}
public boolean isfull()
{
if (top== maxSize-1)
return true;
else
return false;
}
public void pop()
{
if (top != -1)
{
int temp = arr[top];
top --;
System.out.println(temp+"");
}
else {
System.out.println("Stack underflow");
}
}
public static void main(String[] args)
{
Stack myStack= new Stack();
myStack.push(15);
myStack.pop();
myStack.push(1);
myStack.push(25);
myStack.show();
}
}