UVA 400 Unix Is

女爷i 2022-06-07 00:40 208阅读 0赞

The computer company you work for is introducing a brand new computer line and is developing a new Unix-like operating system to be introduced along with the new computer. Your assignment is to write the formatter for the ls function.

Your program will eventually read input from a pipe (although for now your program will read from the input file). Input to your program will consist of a list of (F) filenames that you will sort (ascending based on the ASCII character values) and format into (C) columns based on the length (L) of the longest filename. Filenames will be between 1 and 60 (inclusive) characters in length and will be formatted into left-justified columns. The rightmost column will be the width of the longest filename and all other columns will be the width of the longest filename plus 2. There will be as many columns as will fit in 60 characters. Your program should use as few rows (R) as possible with rows being filled to capacity from left to right.

Input

The input file will contain an indefinite number of lists of filenames. Each list will begin with a line containing a single integer ( tex2html\_wrap\_inline41 ). There will then be N lines each containing one left-justified filename and the entire line’s contents (between 1 and 60 characters) are considered to be part of the filename. Allowable characters are alphanumeric (a to z, A to Z, and 0 to 9) and from the following set { ._- } (not including the curly braces). There will be no illegal characters in any of the filenames and no line will be completely empty.

Immediately following the last filename will be the N for the next set or the end of file. You should read and format all sets in the input file.

Output

For each set of filenames you should print a line of exactly 60 dashes (-) followed by the formatted columns of filenames. The sorted filenames 1 to R will be listed down column 1; filenames R+1 to 2R listed down column 2; etc.

Sample Input

  1. 10
  2. tiny
  3. 2short4me
  4. very_long_file_name
  5. shorter
  6. size-1
  7. size2
  8. size3
  9. much_longer_name
  10. 12345678.123
  11. mid_size_name
  12. 12
  13. Weaser
  14. Alfalfa
  15. Stimey
  16. Buckwheat
  17. Porky
  18. Joe
  19. Darla
  20. Cotton
  21. Butch
  22. Froggy
  23. Mrs_Crabapple
  24. P.D.
  25. 19
  26. Mr._French
  27. Jody
  28. Buffy
  29. Sissy
  30. Keith
  31. Danny
  32. Lori
  33. Chris
  34. Shirley
  35. Marsha
  36. Jan
  37. Cindy
  38. Carol
  39. Mike
  40. Greg
  41. Peter
  42. Bobby
  43. Alice
  44. Ruben

Sample Output

  1. ------------------------------------------------------------
  2. 12345678.123 size-1
  3. 2short4me size2
  4. mid_size_name size3
  5. much_longer_name tiny
  6. shorter very_long_file_name
  7. ------------------------------------------------------------
  8. Alfalfa Cotton Joe Porky
  9. Buckwheat Darla Mrs_Crabapple Stimey
  10. Butch Froggy P.D. Weaser
  11. ------------------------------------------------------------
  12. Alice Chris Jan Marsha Ruben
  13. Bobby Cindy Jody Mike Shirley
  14. Buffy Danny Keith Mr._French Sissy
  15. Carol Greg Lori Peter
  16. 题意:
  17. 输入正整数n以其n个文件名,排序后按列优先的方式左对齐输出。而且每行的最右列是 M字符(最长文件名字符数),其余列为 M+2 字符。
  18. 思路:
  19. 重点是确定输出的行和列,如何实现如此输出。
  20. 代码:
  21. #include <iostream>
  22. #include <algorithm>
  23. #include <cstdlib>
  24. #include <string>
  25. using namespace std;
  26. const int maxcol=60;
  27. const int maxn=105;
  28. void print(const string &s,int len,char c)
  29. {
  30. cout<<s;
  31. for(int i=0;i<len-(int)s.length();i++)
  32. cout<<c;
  33. }
  34. int main()
  35. {
  36. string s[maxn];
  37. int n;
  38. while(cin>>n)
  39. {
  40. int M=0;
  41. for(int i=0;i<n;i++)
  42. {
  43. cin>>s[i];
  44. M=max(M,(int)s[i].length());
  45. }
  46. sort(s,s+n);
  47. print("",maxcol,'-');
  48. cout<<endl;
  49. int cols=(maxcol-M)/(M+2)+1,//算列数,最后列是M字符,其他列是M+2字符
  50. rows=(n-1)/cols+1;//算行数,向上取整
  51. for(int i=0;i<rows;i++)
  52. {
  53. for(int j=0;j<cols;j++)
  54. {
  55. int t=rows*j+i;//巧妙地控制输出,虽是横向输出,确是实现了优先按列输出
  56. if(t<n)
  57. print(s[t],i==cols-1?M:M+2,' ');
  58. }
  59. cout<<endl;
  60. }
  61. }
  62. return 0;
  63. }

发表评论

表情:
评论列表 (有 0 条评论,208人围观)

还没有评论,来说两句吧...

相关阅读