daily leetcode - subsets-ii - !
题目地址 https://leetcode.com/problems/subsets-ii/ 题目描述 Given a collection of integers that might contain duplicates, nums, return all possible subsets (the power set). Note: The solution set must not contain duplicate subsets. Example: Input: [1,2,2] Output: [ [2], [1], [1,2,2], [2,2], [1,2], [] ] 思路 这道子集合之二是之前那道 Subsets 的延伸,这次输入数组允许有重复项,其他条件都不变,只需要在之前那道题解法的基础上稍加改动便可以做出来,我们先来看非递归解法,拿题目中的例子 [1 2 2] 来分析,根据之前 Subsets 里的分析可知,当处理到第一个 2 时,此时的子集合为 [], [1], [2], [1, 2],而这时再处理第二个 2 时,如果在 [] 和 [1] 后直接加 2 会产....