-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArrayImplimentation.java
More file actions
59 lines (54 loc) · 1.23 KB
/
ArrayImplimentation.java
File metadata and controls
59 lines (54 loc) · 1.23 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
//import java.util.Stack;
//import java.util.Stack;
public class ArrayImplimentation {
public static class Stack{
private int[] arr=new int[5];
int idx=0;
void push(int x){
arr[idx]=x;
idx++;
}
int peek(){
if(idx==0) {
System.out.println("stck is empty");
return -1;
}
return arr[idx-1];
}
int pop(){
if(idx==0) {
System.out.println("stck 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.println(arr[i]+" ");
}
System.out.println();
}int size(){
return idx;
}
boolean isEmpty(){
if(size()==0)return true;
else return false;
}
}
public static void main(String[] args) {
Stack st=new Stack();
st.push(4);
st.display();
st.push(5);
st.display();
st.push(6);
st.display();
st.pop();
st.display();
System.out.println(st.size());
// System.out.println(st.size());
}
}