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

leetcode第一刷_Count and Say

时间:2014-06-05 18:34:43      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:c   class   blog   code   a   int   

水题。

描写叙述的还挺麻烦的,实际上就是纸老虎,用两个string,一个存上一轮的结果,一个用来更新出这一轮的结果,每次扫描上一轮,统计一个字符出现的次数,然后把这个次数和字符增加到这一轮的字符串中就能够了。

class Solution {
public:
    string countAndSay(int n) {
        if(n == 0)  return "";
        string tpres, res = "1";
        for(int i=1;i<n;i++){
            int j=0;
            tpres = "";
            while(j<res.length()){
                int tpc = 1;
                while(j+tpc<res.length()&&res[j] == res[j+tpc])
                    tpc++;
                tpres += (tpc+‘0‘);
                tpres += res[j];
                j = j+tpc;
            }
            res = tpres;
        }
        return res;
    }
};


leetcode第一刷_Count and Say,布布扣,bubuko.com

leetcode第一刷_Count and Say

标签:c   class   blog   code   a   int   

原文地址:http://www.cnblogs.com/mengfanrong/p/3768564.html

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