[LeetCode]38.Count and Say

160 篇文章 28 订阅
【题目】

The count-and-say sequence is the sequence of integers beginning as follows:
1, 11, 21, 1211, 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 sequence.

Note: The sequence of integers will be represented as a string.

【分析】

111221 统计相邻重复的字符个数,例如这里111有3个1重复相邻,输出31,22有两个2重复相邻,输出22,1只有一个1,输出11

【代码】

/*********************************
*   日期:2015-01-27
*   作者:SJF0115
*   题目: 38.Count and Say
*   网址:https://oj.leetcode.com/problems/count-and-say/
*   结果:AC
*   来源:LeetCode
*   博客:
**********************************/
#include <iostream>
using namespace std;

class Solution {
public:
    string countAndSay(int n) {
        if(n <= 0){
            return "";
        }//if
        string str("1");
        for(int i = 1;i < n;++i){
            NextCountAndSay(str);
        }//for
        return str;
    }
private:
    void NextCountAndSay(string& str){
        int len = str.length();
        string tmp = "";
        for(int i = 0;i < len;++i){
            int repeatCount = 1;
            // repeat char count
            while((i+1 < len) && (str[i] == str[i+1])){
                ++repeatCount;
                ++i;
            }//
            tmp += to_string(repeatCount);
            tmp += str[i];
        }//for
        str = tmp;
    }
};

int main(){
    Solution solution;
    int n = 5;
    string result = solution.countAndSay(n);
    // 输出
    cout<<result<<endl;
    return 0;
}




  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

@SmartSi

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值