码迷,mamicode.com
首页 > 其他好文 > 详细

字符串的组合

时间:2014-09-20 15:16:27      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   div   sp   log   

引用剑指offer

 1 //组合,从字符串str中取m个字符的所有组合,结果保存在vector中
 2 void combination(char* str,int m,vector<char>& result){
 3     //有两个停止条件:m==0或者*str==‘\0‘
 4     //先判断m
 5     if(m==0){
 6         for(vector<char>::iterator it=result.begin();it!=result.end();it++)
 7             cout<<*it;
 8         cout<<endl;
 9         return;
10     }
11     if(str==NULL|| *str==\0)
12         return;
13     //情况1:当前字符被选中,m--
14     result.push_back(*str);
15     combination(str+1,m-1,result);
16     //上一步将含有*str的组合都输出了,下一步将*str移出result
17     result.pop_back();
18     //情况2:当前字符没被选中,m不变
19     combination(str+1,m,result);
20 }

 

字符串的组合

标签:style   blog   color   io   ar   for   div   sp   log   

原文地址:http://www.cnblogs.com/liuzhiminxd/p/3983102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!