Uva1593 代码对齐


#include <set>
#include <numeric>
#include <cmath>
#include <queue>
#include <stack>
#include <vector>
#include <string>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <cctype>
#include <string>
#include <sstream>
#include <map>
#include <functional>

using namespace std;

typedef long long LL;

#define REP(idx1,num1) for(int idx1=0;idx1<(num1);idx1++)

string s[1100][2000];
int len[2000];
int len2[2000];//第i组有多少个单词
int main()
{
    //freopen("/Users/user/Desktop/1.txt","r",stdin);

    memset(len,0,sizeof(len));
    int i = 0;
    string tmp;
    while(getline(cin,tmp))
    {
        stringstream ss(tmp);
        string tmp2;
        int cnt = 0;//第几个单词
        while(ss >> tmp2)
        {
            //cout << tmp2 << endl;
            int len_tmp = tmp2.length();
            len[cnt] = max(len[cnt],len_tmp+1);
            s[i][cnt++] = tmp2;
        }
        len2[i] = cnt;
        i++;
    }
    i--;//多少组
    for(int l = 0; l <= i; l++)//第l组
    {
        for(int j = 0; j < len2[l]; ++j)//第j个
        {
            if(j == len2[l] -1)
            {
                cout <<s[l][j];
                break;
            }
             string sss = s[l][j];
            for(int m = s[l][j].size(); m < len[j]; m++)
            {
               sss += " ";
            }
            cout << sss;
        }
        cout << endl;
    }
    return 0;
}





  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值