首页 > 其他 > 详细

leetcode--Subsets

时间:2014-02-03 11:02:09      阅读:423      评论:0      收藏:0      [点我收藏+]

Given a set of distinct integers, 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,3], a solution is:

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

 

Discuss

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class Solution {
    public ArrayList<ArrayList<Integer>> subsets(int[] S) {
        ArrayList<ArrayList<Integer> > result = new ArrayList<ArrayList<Integer> >();
        Arrays.sort(S);
        int num = (int)Math.pow(2, S.length);
        for(int i = 0; i < num; ++i){
            ArrayList<Integer> list = new ArrayList<Integer>();
            String binaryreps = Integer.toBinaryString(i);
            for(int j = 0; j < binaryreps.length(); ++j){
                if(binaryreps.charAt(binaryreps.length() - 1 - j) == ‘1‘)
                    list.add(S[j]);
            }
            result.add(list);  
        }      
        return result;
    }
}

  

leetcode--Subsets

原文:http://www.cnblogs.com/averillzheng/p/3537222.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!