-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStackImplementation.java
70 lines (54 loc) · 1.05 KB
/
StackImplementation.java
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
package dataStructures;
import java.util.Scanner;
public class StackImplementation {
Scanner sc = new Scanner(System.in);
int size = sc.nextInt();
int stackArray[] = new int[size];
int top = 0;
//push method
public void push(int data) {
if(isFull()) System.out.println("Stack is full");
else {
stackArray[top] = data;
top++;
}
}
//pop method
public int pop() {
if(isEmpty()) {
System.out.println("Stack is empty");
return -1;
}
else {
int data;
top--;
data = stackArray[top];
stackArray[top]=0;
return data;
}
}
//peek method
public int peek() {
int data;
data = stackArray[top-1];
return data;
}
//show method
public void show() {
for(int n:stackArray) {
System.out.println(n);
}
}
//size method
public int size() {
return top;
}
//isEmpty method
public boolean isEmpty() {
return top<=0;
}
//isFull method
public boolean isFull() {
return size-1==top;
}
}