子集

每日一练社区 2021-08-11 11:43:02

给你一个整数数组 nums ,数组中的元素 互不相同 。返回该数组所有可能的子集(幂集)。

解集 不能 包含重复的子集。你可以按 任意顺序 返回解集。

 

示例 1:

输入:nums = [1,2,3]
输出:
[[],[1],[2],[1,2],[3],[1,3],[2,3],[1,2,3]]

示例 2:

输入:nums = [0]
输出:
[[],[0]]

 

提示:

  • 1 <= nums.length <= 10
  • -10 <= nums[i] <= 10
  • nums 中的所有元素 互不相同
...全文
744 3 打赏 收藏 转发到动态 举报
写回复
用AI写文章
3 条回复
切换为时间正序
请发表友善的回复…
发表回复
Yeats_Liao 2022-08-04
  • 打赏
  • 举报
回复 1

这题在CSDN只有nums.length == 0 、 i < nums.length 答案才是正确的,很奇怪,明明有nums.length < 0 、i < nums.length的选项却显示错误

而我在leetcode.78题尝试运行,用(nums.length <= 0 、 i < nums.length 全部通过

用nums.length == 0 、 i < nums.length 全部通过

用nums.length < 0 、i < nums.length 全部通过

img

BIT_666 2022-02-18
  • 打赏
  • 举报
回复 2
爱码儿 2022-02-11
  • 打赏
  • 举报
回复

leetcode.78题

public class Main {
        public  List<List<Integer>> subsets(int[] nums) {
            List<List<Integer>> res = new ArrayList<List<Integer>>();
            List<Integer> tmp = new ArrayList<>();
            res.add(tmp);
            if (nums.length == 0) {
                return res;
            }
            helper(nums, 0, tmp, res);
            return res;
        }
        public void helper(int[] nums, int start, List<Integer> tmp, List<List<Integer>> res) {
            for (int i = start; i < nums.length; i++) {
                tmp.add(nums[i]);
                helper(nums, i + 1, tmp, res);
                res.add(new ArrayList<>(tmp));
                tmp.remove(tmp.size() - 1);
            }
        }

    public static void main(String[] args) {
        Main _this = new Main();
        List<List<Integer>> subsets = _this.subsets(new int[]{1, 2, 3});
        subsets.forEach(item -> System.out.println(Arrays.toString(item.toArray())));
    }
}

11,501

社区成员

发帖
与我相关
我的任务
社区描述
Study well and make progress every day
其他 企业社区
社区管理员
  • 每日一练社区
  • CSDN学习
  • 幻灰龙
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧