Easy 11 Count and Say(38)

来源:互联网 发布:配置windows关机了 编辑:程序博客网 时间:2024/06/10 03:47

Description
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.

Solution
按照规则暴力实现。

class Solution {public:    string countAndSay(int n) {    if(n==0) return "";    string res="1";    while(--n){        string ress="";        for(int i=0;i<res.size();i++){            int count=1;            while(i+1<res.size()&&res[i]==res[i+1]){                count++;                i++;            }            ress+=to_string(count)+res[i];        }        res=ress;    }    return res;  }};
0 0