【LeetCode-Medium-Java】47. 全排列 II

 题目:

给定一个可包含重复数字的序列,返回所有不重复的全排列。

示例:

输入: [1,1,2]
输出:
[
  [1,1,2],
  [1,2,1],
  [2,1,1]
]

解题思路:回溯

如何理解去重?

https://leetcode-cn.com/problems/permutations-ii/solution/47-quan-pai-lie-iiche-di-li-jie-pai-lie-zhong-de-q/

本题中去重的方式是如果nums[i-1]和nums[i]相等并且nums[i-1]被使用过了,就需要去重。

47.全排列II1.png

 

代码:

public static List<List<Integer>> permuteUnique(int[] nums) {
        List<List<Integer>> res = new ArrayList<>();
        if (nums.length == 0) return res;
        int len = nums.length;
        int depth = 0;
        Deque<Integer> path = new ArrayDeque<>();
        boolean [] used = new boolean[len];
        Arrays.sort(nums);
        dfs(nums,len,depth,res,path,used);
        return res;
    }
    private static void dfs(int[] nums, int len, int depth, List<List<Integer>> res, Deque<Integer> path, boolean[] used) {
        if (len == depth){
            res.add(new ArrayList<>(path));
            return;
        }

        for (int i = 0; i < len; i++) {
            if (used[i]) continue;

            else if (i>0 && nums[i] == nums[i-1] && used[i-1] == true)
                continue;

            else {
                path.addLast(nums[i]);
                used[i] = true;
                dfs(nums,len,depth+1,res,path,used);
                used[i] = false;
                path.removeLast();
            }
        }
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值