zoukankan      html  css  js  c++  java
  • [leetcode]Subsets II

    Subsets II

     Given a collection of integers that might contain duplicates, S, return all possible subsets.

    Note:

    • Elements in a subset must be in non-descending order.
    • The solution set must not contain duplicate subsets.

    For example,
    If S = [1,2,2], a solution is:

    [
      [2],
      [1],
      [1,2,2],
      [2,2],
      [1,2],
      []
    ]

    算法思路:

    [leetcode]Subsets 相比,只是多了一步去重复,其余木有区别,直接暴力。

    代码如下:

     1 public class Solution { 
     2     List<List<Integer>> res = new ArrayList<List<Integer>>();
     3     public List<List<Integer>> subsetsWithDup(int[] num) {
     4         if(num == null || num.length == 0) return res;
     5         Arrays.sort(num);
     6         List<Integer> list = new ArrayList<Integer>();
     7         dfs(list,0,0,num);
     8         return res;
     9     }
    10     private void dfs(List<Integer> list,int k ,int count,int[] num){
    11         if(count <= num.length){
    12             res.add(new ArrayList<Integer>(list));
    13         }else{
    14             return;
    15         }
    16         for(int i = k ; i < num.length; i++){
    17             list.add(num[i]);
    18             dfs(list,i + 1,count+1,num);
    19             list.remove(list.size() - 1);
    20             while(i < num.length - 1 && num[i] == num[i + 1]) i++;
    21         }
    22     }
    23 }
  • 相关阅读:
    hdu 1042 N!
    hdu 1002 A + B Problem II
    c++大数模板
    hdu 1004 Let the Balloon Rise
    hdu 4027 Can you answer these queries?
    poj 2823 Sliding Window
    hdu 3074 Multiply game
    hdu 1394 Minimum Inversion Number
    hdu 5199 Gunner
    九度oj 1521 二叉树的镜像
  • 原文地址:https://www.cnblogs.com/huntfor/p/3869141.html
Copyright © 2011-2022 走看看