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.
» Solve this problem
模拟。
class Solution {
public:
string countAndSay(int n) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
string s = "1";
string next;
if (n == 1) {
return s;
}
for (int i = 1, j; i < n; i++) {
j = 0;
while (j < s.size()) {
int k = j + 1;
while (k < s.size() && s[k] == s[j]) {
k++;
}
next += (k - j + '0');
next += s[j];
j = k;
}
s = next;
next = "";
}
return s;
}
};