-
Notifications
You must be signed in to change notification settings - Fork 0
/
a_123_StackA.java
89 lines (72 loc) · 1.88 KB
/
a_123_StackA.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Stack implementation using ArrayList ;
import java.util.ArrayList ;
public class a_123_StackA {
static class Stack {
// static ArrayList<Integer> list = new ArrayList<>() ;
// public static boolean isEmpty (){
// return list.size() == 0 ;
// }
// // PUSH
// public static void push(int data){
// list.add(data) ;
// }
// // POP
// public static int pop(){
// if(isEmpty()){
// return -1 ;
// }
// int top = list.get(list.size()-1) ;
// list.remove(list.size()-1 ) ;
// return top ;
// }
// // PEEK
// public static int peek(){
// if(isEmpty()){
// return -1 ;
// }
// return list.get(list.size()-1) ;
// }
// ***** Array Implementations ******
static int arr[] = new int[1000] ;
static int top = -1 ;
public static boolean isEmpty (){
return top < 0 ;
}
// PUSH
public static void push(int data){
if(top == arr.length-1){
return ;
}
top ++ ;
arr[top] = data ;
}
// POP
public static int pop(){
if(isEmpty()){
return -1 ;
}
int val = arr[top] ;
top-- ;
return val ;
}
// // PEEK
public static int peek(){
if(isEmpty()){
return -1 ;
}
return arr[top] ;
}
}
public static void main(String[] args) {
Stack s = new Stack() ;
s.push(1);
s.push(2);
s.push(3);
s.push(4);
s.push(5);
while(!s.isEmpty()){
System.out.println(s.peek());
s.pop() ;
}
}
}