LeetCode38.报数

Posted lettleshel

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode38.报数相关的知识,希望对你有一定的参考价值。

class Solution {
public:
    string countAndSay(int n) {
        string str,ans;
        str="1";
        if(n--==1) return str;
        while(n--){
            ans.clear();
            int left=0,right=0;
            while(right<str.size()){
                if(str[right]==str[left]) right++;
                else{
                    ans+=(right-left+‘0‘);
                    ans+=str[left];
                    left=right;
                    right++;
                }
            }
            ans+=(right-left+‘0‘);
            ans+=str[left];
            str=ans;
        }
        
        return ans;
    }
};

  

以上是关于LeetCode38.报数的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode38.报数

LeetCode38.报数

LeetCode 38. 报数

leetcode算法-简单38. 报数

LeetCode38.报数

? 38. 报数-LeetCode