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

给一个只包含 0, 1, * 的 String,将所有的* 替换成 0 或者 1, 返回所有的可能行

时间:2014-11-23 17:16:19      阅读:189      评论:0      收藏:0      [点我收藏+]

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

void GetAllString(int start, string & str, vector<string> & res)
 {
     if (start == str.size())
     {
         res.push_back(str);
     }
     else
     {
         bool has = false;
         for (int i = start; i < str.size(); i++)
         {
             if (str[i] == *)
             {
                 str[i] = 1;
                 GetAllString(i + 1, str, res);
                 str[i] = 2;
                 GetAllString(i + 1, str, res);
                 str[i] = *;
                 has = true;
                 break;
             }
         }
         if (!has)
             res.push_back(str);
     }
 }

 vector<string> GetAllString(string str)
 {
     vector<string> res;
     GetAllString(0, str, res);
     return res;
 }

 

给一个只包含 0, 1, * 的 String,将所有的* 替换成 0 或者 1, 返回所有的可能行

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

原文地址:http://www.cnblogs.com/jobfindingnotes/p/4116612.html

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