Leetcode—38. 外观数列【中等】

2024每日刷题(111)

Leetcode—38. 外观数列

Leetcode—38. 外观数列【中等】_第1张图片

实现代码

class Solution {
public:
    string countAndSay(int n) {
        string ans = "1";
        while(--n) {
            string next;
            for(int i = 0; i < ans.size(); i++) {
                int cnt = 1;
                char c = ans[i];
                while(i + 1 < ans.size() && ans[i] == ans[i+1]) {
                    cnt++;
                    i++;
                }
                next += to_string(cnt) + c;
            }
            ans = move(next);
        }
        return ans;
    }
};

运行结果

Leetcode—38. 外观数列【中等】_第2张图片
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!

你可能感兴趣的:(LeetCode刷题,leetcode,算法,职场和发展,c++,数据结构,经验分享)