-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPermutation.java
More file actions
29 lines (26 loc) · 817 Bytes
/
Permutation.java
File metadata and controls
29 lines (26 loc) · 817 Bytes
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
import edu.princeton.cs.algs4.StdIn;
import edu.princeton.cs.algs4.StdOut;
import edu.princeton.cs.algs4.StdRandom;
import java.util.NoSuchElementException;
public class Permutation {
public static void main(String[] args) {
int k = Integer.parseInt(args[0]);
Deque<String> deque = new Deque<>();
while (!StdIn.isEmpty()) {
String word = "";
try {
word = StdIn.readString();
deque.addFirst(word);
} catch (NoSuchElementException e) {
break;
}
}
for (int i = 0; i < k; ++i) {
if (StdRandom.bernoulli()) {
StdOut.println(deque.removeFirst());
} else {
StdOut.println(deque.removeLast());
}
}
}
}