博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode-38 Count And Say
阅读量:6458 次
发布时间:2019-06-23

本文共 2229 字,大约阅读时间需要 7 分钟。

问题描写叙述:

The count-and-say sequence is the sequence of integersbeginning as follows:

1, 11, 21,1211, 111221, ...

1 is read off as "one1" or 11.

11 is read off as "two1s" 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 integerswill be represented as a string.

 

问题分析:

    题目的意思指:每一个数字串。从最高位開始读起,相应每一个数字的个数x个,其值为y;则记为xy;且每一个数字串与其前一个数字串相关;

    这里是个非常明显的递归,能够使用递归解法,也能够使用循环解法。

两种解法核心都是统计数字串中每一个数字连续出现的次数。

    这里仅需推断当前数字与后一个数字是否同样,

若同样,则count++,计算反复的数据次数。直至该数字与后一个数字不同,或者到了数组尾部;此时将该数字的次数与其值加入入结果String就可以。

代码:

递归解法:

public class Solution {    public String countAndSay(int n){        String result = "";        if (n <= 0)            return result;               return unitDo(n);           }       // 递归解法    private String unitDo(int n) {        if(n <= 1)            return "1";               String pre = unitDo(n - 1);        char[] datas = pre.toCharArray();        StringBuffer resultBuffer = new StringBuffer();               int count = 1;               for(int i = 0; i < datas.length; i++) {            if( (i >= datas.length - 1) || datas[i]!= datas[i + 1] ) {                resultBuffer.append(count);                resultBuffer.append(datas[i]);                count= 1;            }else {                count++;            }        }        return resultBuffer.toString();           }}
 

非递归解法:

// 非递归解法    public String countAndSay2(int n){               String result = "";        if (n <= 0)            return result;        String pre = "1";        char[] datas;        StringBuffer resultBuffer;        int count;               for (int j = 1; j < n;j++) {            datas= pre.toCharArray();            resultBuffer= new StringBuffer();            count= 1;                       //核心部分不变            for(int i = 0; i < datas.length;i++) {                if( (i >= datas.length - 1) || datas[i]!= datas[i + 1] ) {                    resultBuffer.append(count);                    resultBuffer.append(datas[i]);                    count= 1;                }else {                    count++;                }            }            pre= resultBuffer.toString();        }             return pre;    }

转载于:https://www.cnblogs.com/clnchanpin/p/7398018.html

你可能感兴趣的文章
Foundation框架 - 快速创建跨平台的网站页面原型
查看>>
open-falcon
查看>>
三菱plc输出指示灯不亮怎么办(转载)
查看>>
doc2vec使用说明(一)gensim工具包TaggedLineDocument
查看>>
Q:图像太大,在opencv上显示不完全
查看>>
修正锚点跳转位置 避免头部fixed固定部分遮挡
查看>>
利用ItextPdf、core-renderer-R8 来生成PDF
查看>>
NavigationController的使用
查看>>
多线程编程之Windows环境下创建新线程
查看>>
CentOS 7使用systemctl如何补全服务名称
查看>>
Unity3D NGUI 给button按钮添加单间事件
查看>>
密码的校验.大小写字母,数字,特殊字符中的至少3种
查看>>
ios 不同sdk4.3 6.0版本号,关于方法的兼容性的通用方法
查看>>
Webstorm常用快捷键备忘
查看>>
js滚动加载到底部
查看>>
Virtualbox 虚拟机网络不通
查看>>
java概念基础笔记整理
查看>>
leetcode124二叉树最大路径和
查看>>
AngularJS笔记整理 内置指令与自定义指令
查看>>
shell与正则表达式
查看>>