38. 外观数列模拟
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了38. 外观数列模拟相关的知识,希望对你有一定的参考价值。
https://leetcode-cn.com/problems/count-and-say/
class Solution {
public:
string countAndSay(int n) {
string ans="1";
for(int i=2;i<=n;i++)
{
string s;
for(int j=0;j<ans.size();j++)
{
int cnt=1;
int k=j;
while(k+1<ans.size()&&ans[k]==ans[k+1]) k++;
s+=to_string(k-j+1)+ans[j];
j=k;
}
ans=s;
}
return ans;
}
};
以上是关于38. 外观数列模拟的主要内容,如果未能解决你的问题,请参考以下文章