博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Subsets and Subsets II (回溯,DFS,组合问题)
阅读量:6157 次
发布时间:2019-06-21

本文共 1477 字,大约阅读时间需要 4 分钟。

Given a set of distinct integers, S, return all possible subsets.

Note:

  • Elements in a subset must be in non-descending order.
  • The solution set must not contain duplicate subsets.

 

For example,

If S = [1,2,3], a solution is:

[  [3],  [1],  [2],  [1,2,3],  [1,3],  [2,3],  [1,2],  []] 该题和很类似,只不过是k需要从0到size中取值。
class Solution {private:    vector
> res; vector
s;public: void tra(int k,int start,int dep,vector
temp) { if(dep==k){ res.push_back(temp); return; } for(int i=start;i
> subsets(vector
&S) { s=S; sort(s.begin(),s.end()); vector
temp; for(int k=0;k<=s.size();++k){ tra(k,0,0,temp); } return res; }};

 我的分析图:

 

Subsets 2

Given a collection of integers that might contain duplicates, S, return all possible subsets.

 

Note:

 
  • Elements in a subset must be in non-descending order.
  • The solution set must not contain duplicate subsets.

For example,

If S = [1,2,2], a solution is:

 
[  [2],  [1],  [1,2,2],  [2,2],  [1,2],  []]
 
class Solution {private:    vector
> res; vector
s;public: void tra(int k,int start,int dep,vector
temp) { if(dep==k){ for (int i=0;i
> subsetsWithDup(vector
&S) { s=S; sort(s.begin(),s.end()); vector
temp; res.push_back(temp); for(int k=1;k<=s.size();++k){ tra(k,0,0,temp); } return res; }};
 

 

 

转载于:https://www.cnblogs.com/fightformylife/p/4118071.html

你可能感兴趣的文章
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>
Python学习--time
查看>>
在OSCHINA上的第一篇博文,以后好好学习吧
查看>>
Spring常用注解
查看>>
linux:yum和apt-get的区别
查看>>
Sentinel 1.5.0 正式发布,引入 Reactive 支持
查看>>
数据库之MySQL
查看>>
2019/1/15 批量删除数据库相关数据
查看>>
数据类型的一些方法
查看>>
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>
js中var、let、const的区别
查看>>
简洁优雅地实现夜间模式
查看>>
react学习总结
查看>>
在soapui上踩过的坑
查看>>
MySQL的字符集和字符编码笔记
查看>>
ntpd同步时间
查看>>
Maven编译时跳过Test
查看>>
Spring Boot 整合Spring Security 和Swagger2 遇到的问题小结
查看>>
Apache通过mod_php5支持PHP
查看>>