forked from haobinaa/DataStructure-DesignPattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPermute.java
75 lines (69 loc) · 1.97 KB
/
Permute.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
67
68
69
70
71
72
73
74
75
package com.haobin.leetcode.dfs;
import java.util.ArrayList;
import java.util.List;
/**
* @Author HaoBin
* @Create 2020/2/1 18:30
* @Description: 全排列
* <p>
* 给定一个没有重复数字的序列,返回其所有可能的全排列。
* <p>
* 示例:
* <p>
* 输入: [1,2,3]
* 输出:
* [
* [1,2,3],
* [1,3,2],
* [2,1,3],
* [2,3,1],
* [3,1,2],
* [3,2,1]
* ]
**/
public class Permute {
public List<List<Integer>> permute(int[] nums) {
// 首先是特判
int len = nums.length;
// 使用一个动态数组保存所有可能的全排列
List<List<Integer>> res = new ArrayList<>();
if (len == 0) {
return res;
}
// 保存已经使用过那些位置
boolean[] used = new boolean[len];
// 状态变量,已经进入的状态
List<Integer> path = new ArrayList<>();
dfs(nums, len, 0, path, used, res);
return res;
}
/**
* 深度优先遍历
*/
private void dfs(int[] nums, int len, int depth,
List<Integer> path, boolean[] used,
List<List<Integer>> res) {
// 退出条件,已经完成了所有的数
if (depth == len) {
res.add(new ArrayList<>(path));
return;
}
for (int i = 0; i < len; i++) {
// 选择下一个没被选的
if (!used[i]) {
path.add(nums[i]);
used[i] = true;
dfs(nums, len, depth + 1, path, used, res);
// 注意:这里是状态重置,是从深层结点回到浅层结点的过程,代码在形式上和递归之前是对称的
used[i] = false;
path.remove(depth);
}
}
}
public static void main(String[] args) {
int[] nums = {1, 2, 3};
Permute solution = new Permute();
List<List<Integer>> lists = solution.permute(nums);
System.out.println(lists);
}
}