码迷,mamicode.com
首页 > 其他好文 > 详细

47. 全排列 II-bfs/回溯-中等难度

时间:2020-07-19 17:55:22      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:https   col   for   解答   linked   add   来源   sys   序列   

问题描述

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

示例:

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/permutations-ii

解答

class Solution {
    public void backtrack(int n, List<Integer> temp, List<List<Integer>> res, int first){
        if(first == n)res.add(new ArrayList<Integer>(temp));
        for(int i=first;i<n;i++){
            Collections.swap(temp,i,first);
            if(!res.contains(temp))backtrack(n, temp, res, first+1);
            Collections.swap(temp,first,i);
        }
    }
    public List<List<Integer>> permuteUnique(int[] nums) {
        List<List<Integer>> res = new LinkedList<List<Integer>>();
        List<Integer> temp = new ArrayList<Integer>();
        for(int i:nums)
            temp.add(i);
        System.out.println(temp);
        backtrack(temp.size(), temp, res, 0);
        return res;
    }
}

 

47. 全排列 II-bfs/回溯-中等难度

标签:https   col   for   解答   linked   add   来源   sys   序列   

原文地址:https://www.cnblogs.com/xxxxxiaochuan/p/13339576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!