Count and Say
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.
S:
根据上n-1一个个读取得到n
string countAndSay(int n) {
string s = "1";
for(int i = 2; i <= n; ++i){
string new_s = "";
int count = 1;
for(int j = 1; j < s.size(); ++j){
if(s[j] != s[j-1]){
new_s += to_string(count) + s[j-1];
count = 1;
}
else count++;
}
new_s += to_string(count) + s[s.size()-1];
s = new_s;
}
return s;
}