• 38. Count and Say


     

    The count-and-say sequence is the sequence of integers with the first five terms as following:

    1.     1
    2.     11
    3.     21
    4.     1211
    5.     111221
    

    1 is read off as "one 1" or 11.
    11 is read off as "two 1s" or 21.
    21 is read off as "one 2, then one 1" or 1211.

    Given an integer n, generate the nth term of the count-and-say sequence.

    这道题的要求是数数并记录,生成序列中第n个字符串。
    序列中第一个字符串是“1”,接下来依次统计前一个字符串中连续相同字符的数量,并添加到下一字符串中。前15字符串如下:

    每一行都是上一行的数数结果,例如,第五行的’111221’:代表第四行‘1211’有1个1,1个2,2个1,连起来就是11-12-21,即111221。

    .	1
    .	11
    .	21
    .	1211
    .	111221
    .	312211
    .	13112221
    .	1113213211
    .	31131211131221
    .	13211311123113112211
    .	11131221133112132113212221
    .	3113112221232112111312211312113211
    .	1321132132111213122112311311222113111221131221
    .	11131221131211131231121113112221121321132132211331222113112211
    .	311311222113111231131112132112311321322112111312211312111322212311322113212221

     例如,输入‘1’ ,输出第一行的1

       输入‘4’,输出第四行的‘1211’

    常规算法:输入n,要想得到第n行的序列,可以从第一行的‘1’开始,一行一行来算,直到n行 返回结果。

    class Solution {
    public:
        string countAndSay(int n) {
        if (n == 0) return "";
        string res = "1";
        while (--n) {  //输入n时,一行一行算,直到算到第n行
            string cur = "";
            for (int i = 0; i < res.size(); i++) {
                int count = 1; 
                 while ((i + 1 < res.size()) && (res[i] == res[i + 1])){  //正在统计当前字符的数量
                    count++;    
                    i++;
                }
                cur += to_string(count) + res[i];  //一个字符统计完后,记录它的数量及本身。to_string(count)代表res[i]的数量
            }
            res = cur;
        }
        return res;
    }
    };
    
    
  • 相关阅读:
    WordPress Editorial Calendar插件权限安全绕过漏洞
    Linux kernel 本地拒绝服务漏洞
    Linux kernel ‘evm_update_evmxattr’函数拒绝服务漏洞
    VB6-ListView的排序和点滴
    VB6IDE改造
    杂记-匆匆北京行
    第60篇随笔:《道法自然》读书笔记
    VB6 AddIns 控件样式模板
    VB6-改造ComUnit(免除用例名称注册)
    VB6-设计模式点滴
  • 原文地址:https://www.cnblogs.com/hozhangel/p/7854150.html
Copyright © 2020-2023  润新知