-
Notifications
You must be signed in to change notification settings - Fork 17
/
Interleave.java
45 lines (36 loc) · 901 Bytes
/
Interleave.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
import java.util.*;
public class Main {
public static void main(String args[]) {
Queue<Integer> q = new LinkedList<>();
q.add(11);
q.add(12);
q.add(13);
q.add(14);
q.add(15);
q.add(16);
q.add(17);
q.add(18);
q.add(19);
q.add(20);
interleave(q);
}
static void interleave(Queue<Integer> q) {
int mid = q.size() / 2;
Stack<Integer> st = new Stack<>();
for(int i=0; i<mid; i++) {
st.push(q.remove());
}
while(!st.isEmpty()) q.add(st.pop());
for(int i=0; i<mid; i++) {
q.add(q.remove());
}
for(int i=0; i<mid; i++) {
st.push(q.remove());
}
while(!st.isEmpty()) {
q.add(st.pop());
q.add(q.remove());
}
System.out.println(q);
}
}