一、题目描述
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.
题目解读:听读序列:1,11,21,1211,111221,....
第一个数字是1,1个1所以第二数字是11,2个1所以第三个数字是21,1个2和1个1所以第四个数字是1211.... 按这种规律类推
思路:从第三个开始,从1~n-1,对每个数字计数。每次都与前一个进行比较,相同就计数+1,否则就先把前一个数的个数+值存入结果字符串中。
c++代码(20ms,1.11%)
class Solution {
public:
string countAndSay(int n) {
string s="11";
if(n==1)
return "1";
if(n==2)
return "11";
for(int i=2;i<n;i++){
string str="";
for(int j=1;j<s.size();j++){
int count=1;
while(s[j] == s[j-1] && j<s.size()){
count++;
j++;
}
stringstream ss,cc;
ss<<count;
cc<<s[j-1];
str+=ss.str()+cc.str();
if(j==(s.size()-1) && s[j]!=s[j-1]){
int i=1;
stringstream mm,nn;
mm<<i;
nn<<s[j];
str+=mm.str()+nn.str();
}
}//for
s=str;
}
return s;
}
};
本文介绍了一种特殊的整数序列——计数并说序列,并提供了C++实现代码。序列从1开始,后续每一项是对前一项的描述。例如,1被描述为“一个1”,即11;11被描述为“两个1”,即21。
638

被折叠的 条评论
为什么被折叠?



