SubsetsTotal Accepted:49965Total Submissions:176963My SubmissionsQuestionSolutionGiven a set of distinct integers,nums, return all possible subsets.No...
分类:
其他好文 时间:
2015-06-04 11:25:26
阅读次数:
105
Subsets IIGiven a collection of integers that might contain duplicates,nums, return all possible subsets.Note:Elements in a subset must be in non-desc...
分类:
其他好文 时间:
2015-05-28 22:52:47
阅读次数:
148
1 Subsets
Given a set of distinct integers, nums, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.
The solution set must not contain duplicate subsets.
For...
分类:
编程语言 时间:
2015-05-28 12:42:36
阅读次数:
125
主要是判断每一层是否有重的,主要是要有分层的概念,理解分层的的思想后很多算法都好写了。class Solution {private: vector>res;public: void dfs(vector& nums,vector temp,int index,int MaxDep) ...
分类:
其他好文 时间:
2015-05-26 18:06:06
阅读次数:
136
Subsets
Given a set of distinct integers, nums, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets...
分类:
其他好文 时间:
2015-05-26 16:11:41
阅读次数:
107
题目:Given a collection of integers that might contain duplicates,nums, return all possible subsets.Note:Elements in a subset must be in non-descending ...
分类:
其他好文 时间:
2015-05-20 23:55:00
阅读次数:
181
题目:Given a set of distinct integers,nums, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set must ...
分类:
其他好文 时间:
2015-05-20 13:02:57
阅读次数:
77
Given a collection of integers that might contain duplicates, nums, return all possible subsets.Note:Elements in a subset must be in non-descending or...
分类:
编程语言 时间:
2015-05-20 02:02:01
阅读次数:
154
Given a set of distinct integers, nums, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set must no...
分类:
编程语言 时间:
2015-05-19 00:31:27
阅读次数:
141
Given a set of distinct integers, nums, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set must no...
分类:
其他好文 时间:
2015-05-13 07:37:42
阅读次数:
110