您的位置:首页 > 编程语言 > C语言/C++

UVa1593 字符串处理

2015-07-17 22:59 309 查看
注意最后一个单词后面没有空格,还有stringstream的用法

#include<iostream>
#include<cstring>
#include<cstdlib>
#include<cstdio>
#include<string>
#include<map>
#include<set>
#include<algorithm>
#include<vector>
#include<sstream>
using namespace std;

vector<string> code[1010];
int maxLength[200];

int main()
{
int n=0;
string line;
memset (maxLength,0,sizeof (maxLength));
while (getline (cin,line))
{
stringstream ss (line);
string tempString;
int i=0;
while (ss>>tempString)
{
code
.push_back(tempString);
if (maxLength[i]<code
[i].length ())
maxLength[i]=code
[i].length ();
++i;
}
++n;
//getchar ();
}
/*for (int i=0;i<n;i++){
for (int j=0;j<code[i].size ();j++){
cout<<code[i][j]<<" ";
}
cout<<endl;
}*/
/* for (int j=0;j<6;j++)
cout<<maxLength[j]<<" ";
printf ("\n");*/
for (int j=0;j<n;j++){
int lenR=code[j].size ();
for (int k=0;k<lenR;k++){
int lenC=code[j][k].length ();
cout<<code[j][k];
if (k<lenR-1)
for (int l=lenC;l<maxLength[k]+1;l++)
printf (" ");
}
printf ("\n");
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  STL stringstream c++