-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharrayImplementation.java
More file actions
77 lines (67 loc) · 1.68 KB
/
arrayImplementation.java
File metadata and controls
77 lines (67 loc) · 1.68 KB
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
public class arrayImplementation {
public static class Stack {
private int[] arr = new int[5];
private int idx = -1;
void push(int data) {
if (isFull()) {
System.out.println("Stack is full");
return;
}
arr[idx] = data;
idx++;
}
int peek() {
if (idx == 0) {
System.out.println("Stack is empty");
return -1;
}
return arr[idx - 1];
}
int pop() {
if (idx == 0) {
System.out.println("Stack is empty");
return -1;
}
int top = arr[idx - 1];
arr[idx - 1] = 0;
idx--;
return top;
}
void display() {
for (int i = 0; i <= idx - 1; i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
}
int size() {
return idx;
}
boolean isEmpty() {
if (size() == 0) {
return true;
}
return false;
}
boolean isFull() {
if (idx == arr.length) {
return true;
}
return false;
}
}
public static void main(String[] args) {
Stack st = new Stack();
st.push(10);
st.push(20);
st.push(30);
st.display();
System.out.println(st.size());
st.pop();
st.display();
System.out.println(st.size());
st.push(40);
st.push(50);
st.push(60);
System.out.println(st.isFull());
}
}