分解字符串
【摘要】 题目
按要求分解字符串,输入两个数M,N;M代表输入的M串字符串,N代表输出的每串字符串的位数,不够补0。例如:输入2,8, “abc” ,“123456789”,则输出为“abc00000”,“12345678“,”90000000”
代码
#include<iostream>#include<string>#include<vec...
题目
按要求分解字符串,输入两个数M,N;M代表输入的M串字符串,N代表输出的每串字符串的位数,不够补0。例如:输入2,8, “abc” ,“123456789”,则输出为“abc00000”,“12345678“,”90000000”
代码
-
#include<iostream>
-
#include<string>
-
#include<vector>
-
using namespace std;
-
-
vector<string> showAll(vector<string> data, int n) {
-
int size = data.size();
-
vector<string> result;
-
if (0 == size) {
-
return result;
-
}
-
for (int i = 0; i < size; i++) {
-
string inData = data[i];
-
int length = inData.size();
-
//补0
-
for (int j = 0; j < n - length % n; j++) {
-
inData += "0";
-
}
-
//分解
-
int index = 0;
-
while (index < length) {
-
// result.insert(result.begin(),result.size_type);
-
result.push_back(inData.substr(index, n));
-
index += n;
-
}
-
-
}
-
return result;
-
}
-
-
int main(){
-
vector<string> data;
-
d
文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。
原文链接:chenyu.blog.csdn.net/article/details/52244949
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)