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

[LeetCode]90 Subsets II

时间:2015-01-05 07:13:53      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:leetcode

https://oj.leetcode.com/problems/subsets-ii/

http://blog.csdn.net/linhuanmars/article/details/24613193

public class Solution {
    public List<List<Integer>> subsetsWithDup(int[] num) {
        
        Arrays.sort(num);
        
        Set<List<Integer>> results = new HashSet<>();
        help(num, 0, new ArrayList<Integer>(), results);
        return new ArrayList<List<Integer>>(results);
    }
    
    // Don‘t know how to handle duplicate cases :(
    // Using set
    private void help(int[] n, int start, List<Integer> items, Set<List<Integer>> results)
    {
        results.add(new ArrayList<Integer>(items));
        
        for (int i = start ; i < n.length ; i ++)
        {
            items.add(n[i]);
            
            help(n, i + 1, items, results);
            
            items.remove(items.size() - 1);
        }
    }
}


[LeetCode]90 Subsets II

标签:leetcode

原文地址:http://7371901.blog.51cto.com/7361901/1599096

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