力扣子集 JAVA
Posted 蒙面侠1024
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了力扣子集 JAVA相关的知识,希望对你有一定的参考价值。
直接遍历,遇到一个数就把所有子集加上该数组成新的子集,遍历完毕即是所有子集。
以1,2,3为例:
class Solution
public List<List<Integer>> subsets(int[] nums)
List<List<Integer>> res = new ArrayList<>();
res.add(new ArrayList<>());
for (int i = 0; i < nums.length; i++)
int n = res.size();
for (int j = 0; j < n; j++)
List<Integer> tmp = new ArrayList<>(res.get(j));
tmp.add(nums[i]);
res.add(tmp);
return res;
以上是关于力扣子集 JAVA的主要内容,如果未能解决你的问题,请参考以下文章
精选力扣500题 第61题 LeetCode 78. 子集c++/java详细题解