[LeetCode] Count and Say, Solution

本文介绍了一种基于字符串操作的计数读数序列生成算法,该算法通过迭代过程生成第n项计数读数序列。文章详细展示了从初始序列1开始如何逐步生成后续序列,并提供了完整的C++代码实现。

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  n th sequence.
Note: The sequence of integers will be represented as a string.
» Solve this problem

[Thoughts]
string-operation. The only trick thing is Line11. seq[seq.size()] always '\0'. It will help to save an "if" statement.


[Code]
1:    string countAndSay(int n) {  
2: // Start typing your C/C++ solution below
3: // DO NOT write int main() function
4: string seq = "1";
5: int it = 1;
6: while(it<n)
7: {
8: stringstream newSeq;
9: char last = seq[0];
10: int count =0;
11: for(int i =0; i<
= seq.size();i++)
12: {
13: if(seq[i] ==last)
14: {
15: count ++;
16: continue;
17: }
18: else
19: {
20: newSeq<<count<<last;
21: last = seq[i];
22: count =1;
23: }
24: }
25: seq = newSeq.str();
26: it++;
27: }
28: return seq;
29: }




转载于:https://www.cnblogs.com/codingtmd/archive/2013/01/28/5078913.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值