首页 > 其他 > 详细

Leetcode: Count and Say

时间:2015-03-13 22:24:20      阅读:281      评论:0      收藏:0      [点我收藏+]

题目:
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.

思路分析:
我是先写了一个函数用于计算一个数字的下一个数字。计算过程是依次遍历当前数字统计相等的个数。

C++示例代码:

class Solution
{
public:
    //根据当前的number计算下一个number
    string countNext(string number)
    {
        string::size_type length = number.length();
        size_t count = 1;//记录相同数字的个数
        size_t index = 0;//遍历number的伪指针
        char curnum;//临时保存当前的数字
        string result;//最终结果
        //这层循环控制对number的遍历
        while (index < length)
        {
            curnum = number[index];
            //这层循环寻找相同数字并统计个数
            while (index < length)
            {
                //注意这里的index要先++然后进行比较判断,要不然会引起数组越界等问题
                if (index++ != length && curnum == number[index])
                {
                    //如果当前数字和其后的数字相等count++,统计有多少个当前数字
                    count++;
                }
                else
                {
                    //如果不相等就将count和curnum存入结果字符串中
                    result.push_back(count + ‘0‘);
                    result.push_back(curnum);
                    count = 1;
                    break;
                }
            }
        }
        return result;
    }

    string countAndSay(int n)
    {
        string number = "1";
        for (int i = 1; i < n; i++)
        {
            number = countNext(number);
        }
        return number;
    }
};

Leetcode: Count and Say

原文:http://blog.csdn.net/theonegis/article/details/44245975

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!