记录LeetCode第八天(38. Count and Say + string末尾加字符串+int 转换成 string)

记录LeetCode第八天(38. Count and Say)

1. 题目

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 where 1 ≤ n ≤ 30, generate the nth term of the count-and-say sequence.
Note: Each term of the sequence of integers will be represented as a string.

2.例子

Example 1:

Input: 1
Output: “1”

Example 2:

Input: 4
Output: “1211”

3.代码

这个题就主要是递归了。

class Solution {
public:
    string countAndSay(int n) {
        string str, next_str=""; //定义当前字符串str,和下一个字符串next_str
        if(n==1) return "1"; //第一个是“1”
        else
        str = countAndSay(n-1);//其他的递归之前的
        int i=0,j=1;//定义i遍历所有字符,j表示存在连续相同字符个数。
        while(i<str.size())
        {
            for(j = 1; i+j<str.size() && str[i]==str[i+j]; j++);//如果存在相同字符就加一
            next_str.append(to_string(j) + str[i]);//每过一组连续相同字符串,就往下一个next_str添加一次
            i = i+j;//继续读下一组       
        }      
        return next_str;//返回下一个字符串
    }
};

4.string末尾加字符串

一般就是 有string s = " "; 往后添字符 a , b
s = s + 'a' +'b'

还有s.append()
在字符串后加字符串(s1):
s.append(s1);
在字符串加另一个字符串(s1)的一部分(从索引为9开始后面5个字符)
s.append(s1,9,5);
在字符串后面添加7个一样的字符(a)
s.append(7,'a');

5. int 转换为 string

int i;转换为string 类型:
to_string(i);

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值