leetcode-78. 子集

Posted namedlxd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-78. 子集相关的知识,希望对你有一定的参考价值。

给定一组不含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。

说明:解集不能包含重复的子集。

示例:

输入: nums = [1,2,3]
输出:
[
  [3],
  [1],
  [2],
  [1,2,3],
  [1,3],
  [2,3],
  [1,2],
  []
]
 
思路:
  可以采用回溯法,回溯法的基本形式是“递归+循环”,但不是那么容易理解,形式是固定的,可以都写几遍思考一下。
 
代码:
class Solution(object):
    def subsets(self, nums):
        """
        :type nums: List[int]
        :rtype: List[List[int]]
        """

        res = []
        self.dfs(res, [], nums, 0)
        return res

    def dfs(self, res, temp, nums, index):
        res.append(temp.copy())  # 注意要copy一下
        for i in range(index, len(nums)):
            temp.append(nums[i])
            self.dfs(res, temp, nums, i + 1)
            temp.pop()


if __name__ == __main__:
    s = Solution()
    print(s.subsets([1, 2, 3]))

 

以上是关于leetcode-78. 子集的主要内容,如果未能解决你的问题,请参考以下文章

精选力扣500题 第61题 LeetCode 78. 子集c++/java详细题解

leetcode78 子集(Medium)

LeetCode:78. 子集90. 子集 II

[LeetCode] 78. 子集

Leetcode 78.子集

leetcode 78. 子集