LEETCODE 47. Permutations II

题目大意

给出一个数组,里面是n个数字,有可能会重复求出所有可能的且不重复的permutation。

解题思路

跟LeetCode46是一个问题,只是这里可能会出现重复,大题思路可以跟着LeetCode46
http://blog.csdn.net/chenyaxue/article/details/71614584
多加一个重复元素的判断就OK了。
重复元素的处理:
1. 首先需要将数组排个序
2. 原先LeetCode46中有两个swap操作,就是递归完之后需要恢复原本的顺序,这样才能保证所有数字都能便利一遍,但是这里需要去重,相同的数字都在相邻的位置,可以利用第一次swap到数组首位的数字,与下一个数字做比较,如果相同就跳过,不同才会进行下一轮递归。

代码

class Solution {
public:
    vector<vector<int>> permuteUnique(vector<int>& nums) {
        vector<vector<int>> resVec;
        sort(nums.begin(), nums.end());
        getPermutations(nums, 0, resVec);
        return resVec;
    }
private:
    void getPermutations(vector<int> numArr, int startInd, vector<vector<int>>& res) {
        if (startInd >= numArr.size()) {
            res.push_back(numArr);
            return;
        }
        for (int i = startInd; i < numArr.size(); i++) {
            if (i != startInd && numArr[startInd] == numArr[i]) {
                continue;
            }
            swap(numArr[startInd], numArr[i]);
            getPermutations(numArr, startInd + 1, res);
            //swap(numArr[startInd], numArr[i]);
        }
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值