LeetCode 47. Permutations II
原题链接
简单
作者:
cznczai
,
2019-08-21 13:04:20
,
所有人可见
,
阅读 1262
class Solution {
private int n;
private List ls;
private boolean[] bool;
private LinkedList path;
public List<List<Integer>> permuteUnique(int[] nums) {
Arrays.sort(nums);
n = nums.length;
ls = new ArrayList<LinkedList>();
path = new LinkedList<Integer>();
bool = new boolean[n];
dfs(nums, 0);
return ls;
}
private void dfs(int[] nums, int u) {
if (u == n) {
ls.add(path.clone());
return;
}
for (int i = 0; i < n; i++) {
if (!bool[i]) {
if (i >= 1 && nums[i] == nums[i - 1] && bool[i - 1] == false)
continue;
path.add(nums[i]);
bool[i] = true;
dfs(nums, u + 1);
bool[i] = false;
path.removeLast();
}
}
}
}
谢谢分享,很棒.
牛批!