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

[华为练习]分解字符串

时间:2015-06-18 22:15:50      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:华为机试   算法题   

题目

按要求分解字符串,输入两个数M,N;M代表输入的M串字符串,N代表输出的每串字符串的位数,不够补0。例如:输入2,8, “abc” ,“123456789”,则输出为“abc00000”,“12345678“,”90000000”

代码

/*-------------------------------------
*   日期:2015-06-18
*   作者:SJF0115
*   来源:华为机试题
*   题目: 分解字符串
*   博客:
------------------------------------*/
#include <iostream>
#include <vector>
using namespace std;

vector<string> ResolveString(vector<string> vec,int n){
    int size = vec.size();
    vector<string> result;
    if(size == 0 || n <= 0){
        return result;
    }//if
    string str;
    int len;
    for(int i = 0;i < size;++i){
        str = vec[i];
        len = str.size();
        // 补齐0
        for(int j = 0;j < (n - len % n);++j){
            str += "0";
        }//for
        // 分解
        int index = 0;
        while(index < len){
            result.push_back(str.substr(index,n));
            index += n;
        }//while
    }//for
    return result;
}

int main(){
    int m = 2,n = 8;
    vector<string> vec = {"abc","123456789"};
    vector<string> result = ResolveString(vec,n);
    for(int i = 0;i < result.size();++i){
        cout<<result[i]<<endl;
    }//for
    return 0;
}

[华为练习]分解字符串

标签:华为机试   算法题   

原文地址:http://blog.csdn.net/sunnyyoona/article/details/46550527

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