-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathTwoStacksInAnArray.java
66 lines (61 loc) · 1.44 KB
/
TwoStacksInAnArray.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
package SummerTrainingGFG.Stack;
/**
* @author Vishal Singh
*/
public class TwoStacksInAnArray {
static class TwoStack{
int arr[];
int capacity, top1, top2;
TwoStack(int n){
capacity = n;
top1 = -1;
top2 = n;
arr = new int[n];
}
void push1(int x){
if (top1 < top2-1){
top1++;
arr[top1] = x;
}
}
void push2(int x){
if (top1 < top2-1){
top2--;
arr[top2] = x;
}
}
int pop1(){
if (top1 >= 0){
int x = arr[top1];
top1--;
return x;
}else {
return -1;
}
}
int pop2(){
if (top2 < capacity){
int x = arr[top2];
top2++;
return x;
}else {
return -1;
}
}
}
public static void main(String[] args) {
TwoStack twoStack = new TwoStack(7);
twoStack.push1(1);
twoStack.push1(2);
twoStack.push1(3);
twoStack.push1(4);
twoStack.push2(40);
twoStack.push2(455);
for (int i = 0; i < 4; i++) {
System.out.println(twoStack.pop1());
}
for (int i = 0; i < 2; i++) {
System.out.println(twoStack.pop2());
}
}
}