• 47. Permutations II 全排列可重复版本


    Given a collection of numbers that might contain duplicates, return all possible unique permutations.

    Example:

    Input: [1,1,2]
    Output:
    [
      [1,1,2],
      [1,2,1],
      [2,1,1]
    ]

    有i - 1的时候,要求i > 0,起码等于1
    (i > 0) && ((!used[i - 1]) && (nums[i] == nums[i - 1])))
    class Solution {
        public List<List<Integer>> permuteUnique(int[] nums) {
            //cc
            List<List<Integer>> results = new ArrayList<List<Integer>>();
            boolean[] used = new boolean[nums.length];
            
            if (nums == null || nums.length == 0)
                return results;
            
            //排序一下
            Arrays.sort(nums);
            
            dfs(nums, new ArrayList<Integer>(), used, results);
            
            return results;
        }
        
        public void dfs(int[] nums, List<Integer> temp, boolean[] used, 
                       List<List<Integer>> results) {
            //exit
            if (temp.size() == nums.length)
                results.add(new ArrayList<>(temp));
            
            for (int i = 0; i < nums.length; i++) {
                if ((used[i]) || ((i > 0) && ((!used[i - 1]) && (nums[i] == nums[i - 1]))))
                    continue;
                
                temp.add(nums[i]);
                used[i] = true;
                dfs(nums, temp, used, results);
                used[i] = false;
                temp.remove(temp.size() - 1);
            }
     
        }
    }
    View Code
     
  • 相关阅读:
    PHP中的无限级分类
    JS中json数据格式取值实例
    PHP中类的延迟绑定
    电阻
    不能做“没事找抽型”投资者
    Delphi相关文件扩展名介绍
    三极管
    沃伦·巴菲特
    电压,电流,电阻的关系就是欧姆定律
    CnPack 使用的组件命名约定
  • 原文地址:https://www.cnblogs.com/immiao0319/p/13473397.html
Copyright © 2020-2023  润新知