-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStacks.java
89 lines (66 loc) · 1.77 KB
/
Stacks.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
package com.company;
class Stacks {
int capacity;
int [] arr;
int top;
Stacks(int x){
arr = new int[x];
capacity = x;
top = -1;
}
public boolean isEmpty(){
return top == -1;
}
public boolean isFull(){
return top == capacity - 1;
}
public void pushTo(int element){
if(!isFull()){
arr[++top] = element;
}
else{
System.out.println("StackOverflow");
System.exit(1);
}
}
public void popFrom(){
if(isEmpty()){
System.out.println("Stack is Empty");
System.exit(1);
}
top--;
}
public int peek(){
return arr[top];
}
public int sizeOf(){
return top + 1;
}
public void printStack(){
for(int i=0;i<=top;i++){
System.out.println("| "+arr[top-i]+" |");
System.out.println(" ____ ");
}
}
public static void main(String[] args) {
Stacks st = new Stacks(5);
System.out.println("Checking before inserting elements onto Stack : "+st.isEmpty());
System.out.println("Checking Whether is Full or not : "+st.isFull());
st.pushTo(14);
st.pushTo(25);
st.pushTo(10);
st.pushTo(5);
st.pushTo(56);
System.out.println("Checking after inserting elements onto Stack : "+st.isEmpty());
System.out.println(st.sizeOf());
System.out.println(st.isFull());
System.out.println("Peek : "+st.peek());
System.out.println();
System.out.println("Before Pop Operation");
st.printStack();
System.out.println();
System.out.println("After Pop Operation");
st.popFrom();
st.printStack();
}
}