摘要:题目描述注意题目解读找出所有的子集。思路确定子集的来源,遍历原始列表,每一个元素都往已有的子集列表里边添加,同时添加到已有的子集中去,产生新的子集。类似于动态规划思想,依赖于之前的东西产生现在的东西。
题目描述
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],[]]
题目解读:
找出所有的子集。
思路:
确定子集的来源, 遍历原始列表,每一个元素都往已有的子集列表里边添加,同时添加到已有的子集中去,产生新的子集。 类似于动态规划思想,依赖于之前的东西产生现在的东西。
class Solution: # @param num, a list of integer # @return a list of lists of integer def subsetsWithDup(self, S): res = [[]] S.sort() for i in range(len(S)): if i==0 or S[i]!=S[i-1]: l=len(res) for j in range(len(res)-l,len(res)): res.append(res[j]+[S[i]]) return res if __name__=="__main__": st=Solution() S=[1,2,2] S=[0] result=st.subsetsWithDup(S)
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/42182.html
摘要:题目要求可以先参考关于的这篇博客再看接下来的内容。思路一链表的形式我们可以通过例子,,,来说明。在递归中我们会将起始下标后的值依次加入当前结果集,并将结果集加入结果集数组中。如果遇到重复的数字,则继续遍历下一个数字,直至遍历结束。 题目要求 Given a collection of integers that might contain duplicates, nums, retur...
Subsets Problem Given a set of distinct integers, return all possible subsets. Notice Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets. Example ...
摘要:不同数包含重复数为的时候,表示在外层的循环正在被使用,所以当前循环遇到为一定要跳过。对当前循环要添加的数组,在添加当前元素后进行递归,递归之后要将当前元素的使用标记改为,表示已经使用和递归完毕,然后再将这个元素从的末位删除。 Subsets Problem Given a set of distinct integers, nums, return all possible subse...
摘要:写这个系列是因为纪念一下去年的今天,就是年的月号,刷题第一天,今天是一周年纪念日。排除,就是返回一空的。复杂度分析算法课讲过,这个复杂度是指数次,能实现出来就行了,没法优化。复杂度分析不分析了,反正指数次。 Subsets 写这个系列是因为纪念一下去年的今天,就是2015年的9月14号,刷题第一天,今天是一周年纪念日。当时只敢做easy还得抄答案的我想啥时候能做上medium啊,事到如...
摘要:深度优先搜索复杂度时间空间递归栈空间思路这道题可以转化为一个类似二叉树的深度优先搜索。另外需要先排序以满足题目要求。新的集合要一个新的,防止修改引用。 Subset I Given a set of distinct integers, nums, return all possible subsets. Note: Elements in a subset must be in n...
阅读 3524·2021-11-22 15:22
阅读 3317·2019-08-30 15:54
阅读 2703·2019-08-30 15:53
阅读 758·2019-08-29 11:22
阅读 3505·2019-08-29 11:14
阅读 2040·2019-08-26 13:46
阅读 2193·2019-08-26 13:24
阅读 2258·2019-08-26 12:22