LeetCode 78. 子集
Posted Xycdada
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 78. 子集相关的知识,希望对你有一定的参考价值。
直接遍历,将当前字符加到每一个已有的子集中形成新的子集,直到遍历完成即可得到所有的子集。
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 len = res.size(); for(int j = 0; j < len; j++){ List<Integer> temp = new ArrayList<>(res.get(j)); temp.add(nums[i]); res.add(temp); } } return res; } }
以上是关于LeetCode 78. 子集的主要内容,如果未能解决你的问题,请参考以下文章