-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNo47Permutations2.java
46 lines (39 loc) · 1.1 KB
/
No47Permutations2.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
package com.wzx.leetcode;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
/**
* @author wzx
* @see <a href="https://leetcode.com/problems/permutations-ii/">https://leetcode.com/problems/permutations-ii/</a>
*/
public class No47Permutations2 {
/**
* 回溯
* <p>
* time: O(n!)
* space: O(n)
*/
public List<List<Integer>> permuteUnique(int[] nums) {
Arrays.sort(nums);
boolean[] visit = new boolean[nums.length];
List<List<Integer>> res = new LinkedList<>();
recursion(nums, new LinkedList<>(), visit, res);
return res;
}
private void recursion(int[] nums, LinkedList<Integer> track, boolean[] visit, List<List<Integer>> res) {
if (track.size() == nums.length) {
res.add(new LinkedList<>(track));
return;
}
for (int i = 0; i < nums.length; i++) {
if (visit[i]) continue;
// 防止重复
if (i > 0 && nums[i - 1] == nums[i] && !visit[i - 1]) continue;
track.add(nums[i]);
visit[i] = true;
recursion(nums, track, visit, res);
visit[i] = false;
track.removeLast();
}
}
}