-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchElementInStack.java
More file actions
78 lines (61 loc) · 1.73 KB
/
Copy pathSearchElementInStack.java
File metadata and controls
78 lines (61 loc) · 1.73 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
/*
* Author : Hasnain Memon
* Date : 21/11/2024
*/
public class SearchElementInStack {
static class Stack {
private int[] arr;
private int size;
private int index;
public Stack(int size) {
this.size = size;
arr = new int[size];
index = 0;
}
public void push(int element) {
if (isFull()) {
System.out.println("Stack is full");
return;
}
arr[index] = element;
index++;
}
public int pop() {
if (isEmpty()) {
System.out.println("Stack is empty");
return '\0';
}
return arr[--index];
}
public boolean isEmpty() {
return index == 0;
}
public boolean isFull() {
return index == size;
}
// Task 3: Search an element in a stack and return its position (index).
public int searchElement(int number) {
for (int i = 0; i < index; i++) {
if (arr[i] == number) {
return i;
}
}
return -1;
}
}
public static void main(String[] args) {
Stack stack = new Stack(10);
stack.push(5);
stack.push(10);
stack.push(20);
stack.push(30);
stack.push(50);
int number = 20;
int index = stack.searchElement(number);
if (index == -1) {
System.out.println(number + " not found!");
} else {
System.out.println(number + " found at index " + index);
}
}
}