zoukankan      html  css  js  c++  java
  • Count and Say

    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.

    注意char * 和 string的区别。string是一个和vector类,本身是有大小的。如果只

    string str;
    str[0] = 'a';
    str[1] = 'b';
    

    是无法正常改变str的。

    class Solution {
    public:
        string countAndSay(int n) {
            string re;
            vector <int> se;
            se.push_back(1);
            if(n == 1)return "1";
            
            for(int i = 0 ; i < n-1 ;i++)se = nth(se);
            
            int j = 0;
            for(int i = 0 ; se.begin() + i != se.end() ; i++)
            {
                char temp = se[i] + '0';
                re = re + temp;
                j++;
            }
            return re;
        }
        vector<int> nth(vector<int> n )
        {
            vector<int>:: iterator  it;
            vector<int> re;
            it = n.begin();
            for(;it != n.end();)
            {
                int temp = *it;
                //cout<<temp<<endl;
                int num =1;
                it++;
                while(*it == temp && it!= n.end()){it++; num++;}
                
                re.push_back(num);
                re.push_back(temp);
            }
            return re;
        }
    };
    

      

  • 相关阅读:
    前端常用模板引擎- artTemplate
    Vue-多级组件嵌套传值
    echarts图表常用到的设置
    react-基础入门分享
    vue中 export const 和 export default的区别
    vue安装依赖报错
    nvm-node版本控制工具
    gulp-入门
    vue 中使用 iconfont
    c3中基本动画
  • 原文地址:https://www.cnblogs.com/pengyu2003/p/3573876.html
Copyright © 2011-2022 走看看