【LeetCode】Count and Say

133 篇文章 0 订阅
121 篇文章 2 订阅
Count and Say 
Total Accepted: 7984 Total Submissions: 30169 My Submissions
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)、1
2)、11,表示1)有1个1,组合起来就是11。
3)、21,表示2)有2个1,组合起来就是11。
4)、1211,表示3)有1个2,2个1,组合起来就是1121。
5)、111221,表示4)有1个1,1个2,2个1,组合起来就是111221。
6)、312211,表示5)有3个1,2个2,2个1,组合起来就是312211
.......
以此类推。
其实就是统计连续的相同的字符的个数。考察基本功。
Java AC
public class Solution {
    public String countAndSay(int n) {
        String array[] = new String[n];
        array[0] = "1";
        for(int i = 1; i < n; i++){
            char strArr[] = array[i-1].toCharArray();
            int len = strArr.length;
            StringBuilder sb = new StringBuilder();
            int j = 0;
            while(j < len){
                int k = j + 1;
                int count = 1;
                while(k < len && strArr[k] == strArr[j]){
                    k++;
                    count++;
                }
                sb.append(count);
                sb.append(String.valueOf(strArr[j]));
                j = k;
            }
            array[i] = sb.toString();
        }
        return array[n-1];
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值