首页 > 代码库 > LeetCode——Permutations II
LeetCode——Permutations II
Given a collection of numbers that might contain duplicates, return all possible unique permutations.
For example,[1,1,2]
have the following unique permutations:[1,1,2]
, [1,2,1]
, and [2,1,1]
.
题目:给定一组包含重复元素的集合,返回所有可能的独立排列。
思路:此题只要将之前的全排列那题稍作修改即可,首先将数组排序,这样,相同的元素就是相邻的了,在排列取元素时,如果发现前后元素相同,则跳过相同的值。
public List<List<Integer>> permuteUnique(int[] num) { if (num == null) return null; List<List<Integer>> result = new ArrayList<List<Integer>>(); if (num.length == 0) return result; Arrays.sort(num); permute(num, new boolean[num.length], new ArrayList<Integer>(), result); return result; } public void permute(int[] num, boolean[] isused, ArrayList<Integer> current, List<List<Integer>> result) { if (current.size() == num.length) { result.add(new ArrayList<Integer>(current)); return; } for (int i = 0; i < num.length; i++) { if (!isused[i]) { isused[i] = true; current.add(num[i]); permute(num, isused, current, result); isused[i] = false; current.remove(current.size() - 1); while (i + 1 < num.length && num[i + 1] == num[i]) i++; } } }
LeetCode——Permutations II
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。