码迷,mamicode.com
首页 > 其他好文 > 详细

38. Count and Say

时间:2019-08-06 01:02:39      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:temp   队列   g++   com   ret   inf   code   nta   flag   

技术图片

    public String countAndSay(int n) {
        String arr[] = new String[n + 1];
        arr[1] = 1 + "";
        for(int i = 2; i <= n ; i++) {
            StringBuffer bgf = new StringBuffer("");
            char temp = arr[i-1].charAt(0);
            int flag = 1 ;
            for(int x = 1 ; x < arr[i-1].length();x++) {
                if(temp != arr[i-1].charAt(x)) {
                    bgf.append(flag);
                    bgf.append(temp);
                    flag =1;
                    temp = arr[i-1].charAt(x);
                }
                else flag++;
            }
            bgf.append(flag);                             //妙点
            bgf.append(temp);
            arr[i] = bgf.toString();
        }
        return arr[n];
    }
}

队列法 也行ok
递归 xxx太难了

38. Count and Say

标签:temp   队列   g++   com   ret   inf   code   nta   flag   

原文地址:https://www.cnblogs.com/cznczai/p/11306408.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!