[C++]LeetCode: 120 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的区别就是,输入的数字数组中包含重复的元素。如果我们对重复的元素不做处理的话,我们就会产生重复的结果。那么如何避免这种重复呢?按照我们前面处理这类问题的方法,首先对输入数组进行排序,然后对于重复的元素循环时跳过递归函数的调用,只对第一个未被使用的元素进行递归,这一次结果会出现在第一个的递归函数结果中,因为后面的重复元素将重复此次的递归结果,后面的结果被略过。如果第一个重复元素前面的元素还没在前面的结果(本次tmp)中(!used[i-1]),
那么我们不需要递归。比如[1,1,1,2], 如果第一个1在结果中(used[0] = true),我们下次循环时,我们判断到第二个1,才进行递归和push进tmp, 否则会导致重复。这一点很重要,需要思考下。总体来说,我们需要对重复元素和前面元素的使用情况进行判断。

AC Code:

class Solution {
public:
    vector<vector<int> > permuteUnique(vector<int> &num) {
        vector<vector<int> > ret;
        if(num.size() == 0) return ret;

        vector<int> tmp;
        vector<bool> used(num.size(), false);
        sort(num.begin(), num.end());
        permuteUnique_helper(num, tmp, used, ret);
        return ret;
    }

private:
    void permuteUnique_helper(vector<int>& num, vector<int> tmp, vector<bool> used, vector<vector<int> >& ret)
    {
        if(tmp.size() == num.size())
        {
            ret.push_back(tmp);
            return;
        }

        for(int i = 0; i < num.size(); i++)
        {
            if(i > 0 && !used[i-1] && num[i-1] == num[i]) continue;

            if(!used[i])
            {
                tmp.push_back(num[i]);
                used[i] = true;
                permuteUnique_helper(num, tmp, used, ret);
                tmp.pop_back();
                used[i] = false;
            }
        }
        return;
    }
};

这个解法带有一般性,放到Permutations中也是正确的,所以在面试时遇到,我们可以直接实现这个代码,不要假设元素没有重复,可以和面试官进行讨论,但是一般我们都要考虑重复元素。

这道题,我们也可以用迭代的方法去做,可以用next permutation的算法,保证顺序,从最小的排列到最大的排列迭代下去,代码相对冗长,一般面试不会考到这道题迭代的方法,不过可以看下这篇博文:

Permutations, Permutations
II(求全排列)

时间: 2024-11-08 06:19:33

[C++]LeetCode: 120 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].题解:依旧使用的是DFS的思想. 首先需要遍历输入数组,获取一共有多少种不同的数字,每个数字有多少个. 最简单的方法,

[LeetCode][JavaScript]Permutations II

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]. https://leetcode.com/problems/permutations

LeetCode 047 Permutations II

题目要求: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]. 代码如下: class Solution { public: vector

【LeetCode】Permutations II

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有何差异. 记当前位置为start,当前排列数

leetCode 47.Permutations II (排列组合II) 解题思路和方法

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]. 思路:这题相比于上一题,是去除了反复项. 代码上与上题略有区别.详细代码例如以下

[Lintcode]16. Permutations II/[Leetcode]47. Permutations II

16. Permutations II/47. Permutations II 本题难度: Medium Topic: Search & Recursion Description Given a list of numbers with duplicate number in it. Find all unique permutations. Example Example 1: Input: [1,1] Output: [ [1,1]] Example 2: Input: [1,2,2] O

【leetcode】Permutations II (middle)

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]. 思路: 找规律递归 一个数跟自己后面的数字交换如 1 2 2 第一个数字和第2个数字换, 但是不换重复的数字 第一个

LeetCode 47 Permutations II(全排列)

题目链接: https://leetcode.com/problems/permutations-ii/?tab=Description 给出数组,数组中的元素可能有重复,求出所有的全排列 使用递归算法: 传递参数 List<List<Integer>> list, List<Integer> tempList, int[] nums, boolean[] used 其中list保存最终结果 tempList保存其中一个全排列组合 nums保存初始的数组 used随着计

LeetCode 46 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]. 思路,使用字典序法,与http://blog.csdn.net/mlweixiao/article/detail