-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPermutations.java
40 lines (36 loc) · 1.14 KB
/
Permutations.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
import java.util.ArrayList;
import java.util.List;
/**
* Created by cpacm on 2017/6/6.
*/
public class Permutations {
public static void main(String[] args) {
System.out.println(permute(new int[]{1, 2, 3, 4, 6, 8, 998, 18}));
}
public static List<List<Integer>> permute(int[] nums) {
List<List<Integer>> result = new ArrayList<>();
for (int i : nums) {
List<List<Integer>> temp = new ArrayList<>(result);
result.clear();
if (temp.size() == 0) {
List<Integer> list = new ArrayList<>();
list.add(i);
result.add(list);
continue;
}
for (List<Integer> list : temp) {
for (int k = 0; k <= list.size(); k++) {
if (k == list.size()) {
list.add(i);
result.add(list);
break;
}
List<Integer> ll = new ArrayList<>(list);
ll.add(k, i);
result.add(ll);
}
}
}
return result;
}
}