-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path20_StackArray.java
More file actions
93 lines (85 loc) · 2.57 KB
/
20_StackArray.java
File metadata and controls
93 lines (85 loc) · 2.57 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import java.util.Scanner;
public class StackArray {
int[] stack;
int top;
int max;
StackArray(int size) {
max = size;
stack = new int[max];
top = -1;
}
boolean isEmpty() {
return (top == -1);
}
boolean isFull() {
return (top == max - 1);
}
void push(int data) {
if (isFull()) {
System.out.println("Stack Overflow! Cannot push.");
} else {
stack[++top] = data;
System.out.println(data + " pushed.");
}
}
void pop() {
if (isEmpty()) {
System.out.println("Stack Underflow! Cannot pop.");
} else {
System.out.println("Popped element: " + stack[top--]);
}
}
void display() {
if (isEmpty()) {
System.out.println("Stack empty.");
return;
}
System.out.print("Stack elements: ");
for (int i = top; i >= 0; i--) {
System.out.print(stack[i] + " ");
}
System.out.println();
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Enter stack size: ");
int size = sc.nextInt();
StackArray stack = new StackArray(size);
int choice;
do {
System.out.println("\n--- MENU ---");
System.out.println("1. Push");
System.out.println("2. Pop");
System.out.println("3. isEmpty");
System.out.println("4. isFull");
System.out.println("5. Display");
System.out.println("6. Exit");
System.out.print("Enter choice: ");
choice = sc.nextInt();
switch (choice) {
case 1:
System.out.print("Enter value: ");
stack.push(sc.nextInt());
break;
case 2:
stack.pop();
break;
case 3:
System.out.println(stack.isEmpty() ? "Stack is empty." : "Stack is not empty.");
break;
case 4:
System.out.println(stack.isFull() ? "Stack is full." : "Stack is not full.");
break;
case 5:
stack.display();
break;
case 6:
System.out.println("Exiting...");
break;
default:
System.out.println("Invalid choice.");
}
} while (choice != 6);
sc.close();
}
}