每日一题:子集 II

163 阅读1分钟

90. 子集 II

给你一个整数数组 nums ,其中可能包含重复元素,请你返回该数组所有可能的子集(幂集)。

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

 

示例 1:

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

示例 2:

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

提示:

  • 1 <= nums.length <= 10

  • -10 <= nums[i] <= 10

代码实现

var subsetsWithDup = function (nums) {

   const result = [], path = [], start_idx = 0

   nums.sort((a, b) => a - b)

   backstracking(0)
   return result


   function backstracking(start_idx) {
       result.push(path.slice())

       for (let i = start_idx; i < nums.length; i++) {
           if (i > start_idx && nums[i] === nums[i - 1]) continue
           path.push(nums[i])
           backstracking(i + 1)
           path.pop()
       }
   }
};