题目
给定一个不含重复数字的数组 nums
,返回其 所有可能的全排列 。你可以 按任意顺序 返回答案。
示例 1:
输入:nums = [1,2,3]
输出:[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]
1
2
2
示例 2:
输入:nums = [0,1]
输出:[[0,1],[1,0]]
1
2
2
示例 3:
输入:nums = [1]
输出:[[1]]
1
2
2
提示:
1 <= nums.length <= 6
-10 <= nums[i] <= 10
nums
中的所有整数 互不相同
题解
java
public List<List<Integer>> permute(int[] nums) {
List<List<Integer>> result = new ArrayList<>();
Consumer<List<Integer>> consumer = new Consumer<List<Integer>>() {
@Override
public void accept(List<Integer> list) {
// 长度相同 已经排列完成
if (list.size() == nums.length) {
result.add(new ArrayList<>(list));
return;
}
for (int num : nums) {
if (!list.contains(num)) {
list.add(num);
this.accept(list);
// 回溯
list.remove(list.size() - 1);
}
}
}
};
// 排除数组为空的时候
if (nums.length > 0) {
consumer.accept(new ArrayList<>());
}
return result;
}
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
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