? 38. 报数-LeetCode

Posted pc-m

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了? 38. 报数-LeetCode相关的知识,希望对你有一定的参考价值。

技术图片

心得:效果不理想,后期还会改进

 

 1 class Solution {
 2     public String countAndSay(int n) {
 3             String str="1";
 4             for(int i=2;i<=n;i++)
 5             {
 6                 char[] s=String.valueOf(str).toCharArray();
 7                      str="";
 8                     int index=1;
 9                   for(int j=0;j<s.length;j++)
10                 {
11                     if(j+1<s.length&&s[j]==s[j+1])
12                         index++;
13                     else
14                     {
15                         str=str+index+s[j];
16                         index=1;
17                     }
18                 }
19             }
20             return  str;
21         }
22 }

 

以上是关于? 38. 报数-LeetCode的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode38.报数

LeetCode38.报数

LeetCode 38. 报数

leetcode算法-简单38. 报数

LeetCode38.报数

? 38. 报数-LeetCode