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

Count and Say

时间:2017-04-23 13:15:51      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   while   public   str   code   ring   size   count   class   

class Solution {
public:
    string countAndSay(int n) {
        string ret = "1";
        for(int i=1; i<n; ++i)
            ret = generateNext(ret);
        return ret;
    }
    
    string generateNext(string s)
    {
        string ret = "";
        for(int i=0; i<s.size(); ++i)
        {
            int count = 1;
            while((i<s.size()-1) && s[i] == s[i+1])
            {
                ++count;
                ++i;
            }
            ret.insert(ret.end(), count + 0);
            ret.insert(ret.end(), s[i]);
            
        }
        
        return ret;
    }
};

 

Count and Say

标签:style   while   public   str   code   ring   size   count   class   

原文地址:http://www.cnblogs.com/chengyuz/p/6752167.html

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