-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStackOperations.java
More file actions
78 lines (65 loc) · 1.99 KB
/
Copy pathStackOperations.java
File metadata and controls
78 lines (65 loc) · 1.99 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
import java.util.Scanner;
public class StackOperations {
static final int MAX = 5;
static int[] stack = new int[MAX];
static int top = -1;
static void push(Scanner sc) {
if (top == MAX - 1) {
System.out.println("Stack Overflow!");
} else {
System.out.print("Enter element to push: ");
int item = sc.nextInt();
top++;
stack[top] = item;
System.out.println(item + " pushed into stack.");
}
}
static void pop() {
if (top == -1) {
System.out.println("Stack Underflow!");
} else {
System.out.println("Popped element: " + stack[top]);
top--;
}
}
static void display() {
if (top == -1) {
System.out.println("Stack is empty.");
} else {
System.out.println("Stack elements are:");
for (int i = top; i >= 0; i--) {
System.out.println(stack[i]);
}
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int choice;
do {
System.out.println("\n----- STACK MENU -----");
System.out.println("1. Push");
System.out.println("2. Pop");
System.out.println("3. Display");
System.out.println("4. Exit");
System.out.print("Enter your choice: ");
choice = sc.nextInt();
switch (choice) {
case 1:
push(sc);
break;
case 2:
pop();
break;
case 3:
display();
break;
case 4:
System.out.println("Program Terminated...");
break;
default:
System.out.println("Invalid choice! Please try again.");
}
} while (choice != 4);
sc.close();
}
}