-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStack.java
More file actions
78 lines (48 loc) · 959 Bytes
/
Stack.java
File metadata and controls
78 lines (48 loc) · 959 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
67
68
69
70
71
72
73
74
75
76
77
78
public class Stack {
int[] arr ;
int capacity;
int top;
Stack(int size){
arr= new int[size];
capacity = size;
top = -1;
}
public void push(int data) {
if(isFull()) {
System.out.print("stack overflow");
return;
}
arr[++top] = data;
}
public int pop() {
if(isEmpty()) {
System.out.print("stack underflow");
return -1;
}
int data = arr[top--];
return data;
}
public void printStack() {
for(int i = 0 ; i <= top ; i++) {
System.out.print(" "+arr[i]);
}
}
public boolean isFull() {
return top == capacity-1;
}
public boolean isEmpty() {
return top == -1 ;
}
public static void main(String args[]) {
Stack stack = new Stack(5);
stack.push(1);
stack.push(2);
stack.push(3);
stack.printStack();
int data = stack.pop();
if(data == 3) {
System.out.print("\nwoohoo we have done it\n");
}
stack.printStack();
}
}