Permutations II

Posted IIcyZhao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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<vector<int> > permuteUnique(vector<int> &num) 
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        n = num.size();
        nums = &num;
        record = vector<int>(n, 1);
        filter.clear();
        result.clear();
        if (n < 1) 
            return result;
        
        backTrace(0);
        return result;
    
    
    void backTrace(int i) 
        if (i >= n) 
           if (filter.find(got) == filter.end()) 
                  result.push_back(got);
                  filter.insert(got);
           
           return ;
         
        for (int j = 0; j < n; ++j) 
           if (record[j] == 1) 
               record[j] = 0;
               got.push_back((*nums)[j]);
               backTrace(i+1);
               record[j] = 1;
               got.pop_back();
           
        
    
    
    private:
    int n;
    vector<int>* nums;
    vector<int> record;
    vector<int> got;
    vector<vector<int> > result;
    set<vector<int> > filter;
;


以上是关于Permutations II的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 46-Permutations and 47-Permutations II

[Leetcode] Permutations II

#Leetcode# 47. Permutations II

LintCode : Permutations II

Lintcode16 Permutations II solution 题解

lintcode-medium-Permutations II