UVA 1593 Alignment of Code(紫书习题5-1 字符串流)

You are working in a team that writes Incredibly Customizable Programming Codewriter (ICPC) which is basically a text editor with bells and whistles. You are working on a module that takes a piece of code containing some definitions or other tabular information and aligns each column on a fixed vertical position, while keeping the resulting code as short as possible, making sure that only whitespaces that are absolutely required stay in the code. So, that the first words on each line are printed at position p 1 = 1; the second words on each line are printed at the minimal possible position p 2, such that all first words end at or before position p2 - 2; the third words on each line are printed at the minimal possible position p3, such that all second words end at or before position p 3 - 2, etc. 
For the purpose of this problem, the code consists of multiple lines. Each line consists of one or more words separated by spaces. Each word can contain uppercase and lowercase Latin letters, all ASCII punctuation marks, separators, and other non-whitespace ASCII characters (ASCII codes 33 to 126 inclusive). Whitespace consists of space characters (ASCII code 32).

Input

The input file contains one or more lines of the code up to the end of file. All lines (including the last one) are terminated by a standard end-of-line sequence in the file. Each line contains at least one word, each word is 1 to 80 characters long (inclusive). Words are separated by one or more spaces. Lines of the code can have both leading and trailing spaces. Each line in the input file is at most 180 characters long. There are at most 1000 lines in the input file.

Output

Write to the output file the reformatted, aligned code that consists of the same number of lines, with the same words in the same order, without trailing and leading spaces, separated by one or more spaces such that i-th word on each line starts at the same position p i.
 
Sample Input
  start:  integer;    // begins here
stop: integer; //  ends here  
 s:  string;   
c:   char; // temp 
Sample Output
start: integer; // begins here
stop:  integer; // ends   here
s:     string;
c:     char;    // temp

关于代码对齐的练习 只需要找出每一列最长单词的长度,利用stringstream就可以轻松实现

vjudge 上的题目链接 :https://cn.vjudge.net/problem/POJ-3959;
关键字: vector , stringstream , setw() , string

 1 #include <iostream>
 2 #include <algorithm>
 3 #include <vector>
 4 #include <sstream>
 5 #include <iomanip>
 6 using namespace std;
 7 const int N = 1000 + 10;
 8 int max_len[200];   //定义为全局列表 数组初始化为0
 9 //记录每一列最长的长度
10 int main()
11 {
12     ios_base::sync_with_stdio(false);
13     string line;
14     int line_num = 0;
15     vector<string> tail[N];
16     while(getline(cin,line)) //开始录入每一行的数据 遇到ctrl+z停止
17     {
18         int i=0;
19         string word;
20         stringstream wordline(line); //word<<line  使用字符串流读取每一行的每一个单词
21         while(wordline>>word)
22         {
23             max_len[i] = max(max_len[i],int(word.length()));
24             tail[line_num].push_back(word);
25             ++i;
26         }
27         ++line_num;
28     }
29     for(int i = 0;i < line_num;i++)
30     {
31         for(int j = 0;j < tail[i].size(); j++)
32         {
33             cout<<setiosflags(ios::left)<<setw(max_len[j]+1)<<tail[i][j];
34             //setiosflags(ios::left) 即控制向左输入
35         }
36         cout<<endl;
37     }
38     return 0;
39 }

tips: stringstream 很方便,,但也很慢




原文地址:https://www.cnblogs.com/darkboy/p/9369742.html