`

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].

Permutations 这道题不同的是数组中包含重复的元素,有重复的元素我们就不能通过值来判断当前元素是否已经被记录,我们可以通过下标来记录元素是否被记录,因为每个元素的下标是唯一的,这是我们用一个辅助数组isVisited来记录,并且isVisited要同结果集一同回溯。此外数组中可能包含很多重复元素,因此我们可以先将数组排序,然后在回溯时,记录删除的元素,当回溯后继续往前走时,首先判断当前元素与之前删除的元素是否相同,如果相同就直接跳过。代码如下:
public class Solution {
    public List<List<Integer>> permuteUnique(int[] nums) {
        ArrayList<Integer> list = new ArrayList<Integer>();
        ArrayList<List<Integer>> llist = new ArrayList<List<Integer>>();
        ArrayList<Integer> isVisited = new ArrayList<Integer>();
        if(nums == null || nums.length == 0) return llist;
        java.util.Arrays.sort(nums);
        getPermute(0, nums, isVisited, list, llist);
        return llist;
    }
    public void getPermute(int start, int[] nums, ArrayList<Integer> isVisited, ArrayList<Integer> list, ArrayList<List<Integer>> llist) {
        if(list.size() == nums.length) {
            if(!llist.contains(list))
                llist.add(new ArrayList<Integer>(list));
        }
        int former = Integer.MIN_VALUE;
        for(int i = start; i < nums.length; i++) {
            if(former == nums[i]) continue;
            if(!isVisited.contains(i)) {
                list.add(nums[i]);
                isVisited.add(i);
                getPermute(0, nums, isVisited, list, llist);
                former = list.remove(list.size() - 1);
                isVisited.remove(isVisited.size() - 1);
            }
        }
    }
}
分享到:
评论

相关推荐

    js-leetcode题解之47-permutations-ii.js

    在解决LeetCode中的47号问题"Permutations II"时,我们面临的是一个对给定整数数组进行全排列,并且要求结果中的排列是唯一的,即没有重复排列的问题。由于数组中可能包含重复的数字,因此我们需要在算法设计时考虑...

    C语言-leetcode题解之47-permutations-ii.c

    标题中的“leetcode题解之47-permutations-ii.c”指的是一段用C语言编写的代码,该代码旨在解决leetcode网站上的算法问题——“47.全排列II”(Permutations II)。这是一个经典的算法题,要求编写一个程序来找出...

    Coding Interview In Java

    235 Permutations II 571 236 Permutation Sequence 573 237 Generate Parentheses 575 238 Combination Sum 577 239 Combination Sum II 579 240 Combination Sum III 581 241 Combinations 583 242 Letter ...

    全排列ⅱ(java代码).docx

    PermutationsII permutations = new PermutationsII(); int[] nums = {1, 1, 2}; List&lt;List&lt;Integer&gt;&gt; result = permutations.permuteUnique(nums); for (List&lt;Integer&gt; permutation : result) { System.out....

    c++-c++编程基础之leetcode题解第47题全排列II.zip

    第47题"全排列II"(Permutations II)是LeetCode中的一道经典题目,它涉及到组合数学和递归的思想。在本题中,任务是找出所有可能的无重复字符的全排列。 全排列问题通常使用回溯法来解决,这是一种通过尝试所有...

    Fourier Theoretic Probabilistic Inference over Permutations

    ### Fourier Theoretic Probabilistic Inference over Permutations #### Introduction This paper discusses a unique method for probabilistic inference over permutations, which are fundamental in a wide ...

    a survey of alternating permutations.pdf

    Richard P. Stanley的经典文章A Survey of Alternating Permutations,供有需要者下载

    _leetcode-python.pdf

    - Permutations / Permutations II: 生成所有可能的排列组合,考虑重复元素的情况。 - Rotate Image: 给定一个二维矩阵,将它顺时针旋转90度。 - Group Anagrams: 组合所有字母异位词,即将字母顺序不同但字母组合...

    leetcode怎么销号-LeetCode-Solutions:我自己的LeetCode解决方案

    Permutations Medium 回溯 0047 Permutations II Medium 递归、回溯 0051 N-Queens Hard 回溯 0053 Maximum Subarray Easy 动态规划 0069 Sqrt(x) Easy 二分、牛顿迭代 0070 Climbing Stairs Easy 动态规划 0075 ...

    permutations

    在编程领域,特别是使用Python语言时,"permutations"是一个重要的概念,它涉及到组合学和算法设计。排列是指从给定的元素集中选取若干个元素,并按照一定的顺序进行排列的所有可能方式。在Python中,我们可以使用...

    leetcode题库-little-algorithm:LeetCode题目参考代码与详细讲解,公众号《面向大象编程》文章整理

    leetcode题库 Little Algorithm 从 2020 年初开始,我在公众号《面向大象编程》上发表面试算法、LeetCode 题解相关文章,至今收获不少好评。...Permutations全排列 Permutations II全排列 II Maximum Suba

    leetcode怎么计算空间复杂度是指-LeetCode-Solution:我的第一个LeetCode解决方案

    046:Permutations 047:Permutations II 051:N-Queens 052:N-Queens II 071: Letter Combinations of a Phone Number 093:Restore IP Addresses 树的遍历问题也可以用这种思想来解释。只不过是特殊的递归而已。...

    permutations-count:计算可能的排列数量

    安装$ npm install --save permutations-count 用法 var permutationsCount = require ( 'permutations-count' ) ;var numPermutations = permutationsCount ( 12 , 3 ) ;console . log ( numPermutations ) ; // =&gt;...

    信息安全_数据安全_Lossy_Trapdoor_Permutations_with.pdf

    【信息安全与数据安全:Lossy Trapdoor Permutations的深度探讨】 在信息安全领域,数据安全是至关重要的一环。Lossy Trapdoor Permutations(LTP)是一种用于保护数据安全的加密技术,它结合了trapdoor函数和lossy...

    C语言-leetcode题解之46-permutations.c

    在leetcode中,第46题“permutations”要求编写一个函数,返回给定数字的所有可能排列组合。这是一道经典的排列组合问题,通常采用回溯算法来解决。回溯算法是一种通过探索所有可能的候选解来找出所有解的算法,如果...

    Number_permutations:重复数排列

    数字排列重复数排列Расчётколичествастроквфайлепроизвёлкомандой:.. \ permutations.txt“ |测量对象-线ВWindouse 标题:行字字符属性30240

    Permutations Calculator-开源

    《Permutations Calculator 开源软件深度解析》 在数字化时代,我们常常需要处理各种数据的排列组合问题,这在数学、编程、密码学等领域都极为常见。为此,一款名为"Permutations Calculator"的开源软件应运而生,...

Global site tag (gtag.js) - Google Analytics