题目:
给定一组不含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。
说明:解集不能包含重复的子集。
示例:
输入: nums = [1,2,3]
输出:
[
[3],
[1],
[2],
[1,2,3],
[1,3],
[2,3],
[1,2],
[]
]
思路:
位运算,求出数组nums的长度n,则一共有2^n个子集,则从0遍历到2^ n - 1,将其转换成2进制数,将2进制数中为1的位置对应的数组元素加入到子集中。
class Solution {
public List<List<Integer>> subsets(int[] nums) {
//int len = nums.length;
int end = (int)Math.pow(2,nums.length);
List<List<Integer>> res = new ArrayList<>();
for(int i = 0; i < end; i++)
{
res.add(subset(nums,i));
}
return res;
} public List<Integer> subset(int[] nums, int m)
{
List<Integer> res = new ArrayList<>();
int i = 0;
while(m != 0)
{
if(m % 2 != 0)
{
res.add(nums[i]);
}
m = m / 2;
i++;
}
return res;
}
}