Unix ls 

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( ).There will then be N lines each containing one left-justifiedfilename 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 followingset { ._- } (not including the curly braces). There will be no illegalcharacters 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

题意:

制表输出给出的一堆单词;

制表规则:

根据所有单词中, 长度最长的一个, 决定了有几列

一行最多输出60个字符

做法及注意点:

网上挺多份代码说60会WA, 所以我听信了, 根据别人题解的建议, 用62;

然后输出的话我们可以先qsort一下, 接着, 看我AC代码吧, 怎么按列输出

AC代码:

  1. #include<stdio.h>
  2. #include<string.h>
  3. #include<stdlib.h>
  4.  
  5. char str[100][65];
  6.  
  7. int cmp(const void *a, const void *b) {
  8. return strcmp((char *)a, (char *)b);
  9. }
  10.  
  11. int main() {
  12. int N;
  13. int row, col;
  14. while(scanf("%d", &N) != EOF) {
  15. getchar();
  16. int max_l = 0;
  17. for(int i = 0; i < N; i++) {
  18. gets(str[i]);
  19. if(strlen(str[i]) > max_l)
  20. max_l = strlen(str[i]);
  21. }
  22. qsort(str, N, sizeof(str[0]), cmp);
  23. printf("------------------------------------------------------------\n");
  24. col = 62 / (max_l+2);
  25. row = (N-1) / col+1;
  26. for(int i = 0 ; i < row; i++) {
  27. for(int j = 0; j < col; j++) {
  28. int pos = j * row + i;
  29. int len, blank;
  30. if(pos >= N)
  31. break;
  32. printf("%s", str[pos]);
  33. len = strlen(str[pos]);
  34. blank = max_l - len;
  35. for(int k = 0; k < blank; k++)
  36. printf(" ");
  37. printf(" ");
  38. }
  39. printf("\n");
  40. }
  41. }
  42. return 0;
  43. }

UVA 400 (13.08.05)的更多相关文章

  1. UVA 10194 (13.08.05)

    :W Problem A: Football (aka Soccer)  The Problem Football the most popular sport in the world (ameri ...

  2. UVA 253 (13.08.06)

     Cube painting  We have a machine for painting cubes. It is supplied withthree different colors: blu ...

  3. UVA 573 (13.08.06)

     The Snail  A snail is at the bottom of a 6-foot well and wants to climb to the top.The snail can cl ...

  4. UVA 10499 (13.08.06)

    Problem H The Land of Justice Input: standard input Output: standard output Time Limit: 4 seconds In ...

  5. UVA 10025 (13.08.06)

     The ? 1 ? 2 ? ... ? n = k problem  Theproblem Given the following formula, one can set operators '+ ...

  6. UVA 465 (13.08.02)

     Overflow  Write a program that reads an expression consisting of twonon-negative integer and an ope ...

  7. UVA 10494 (13.08.02)

    点此连接到UVA10494 思路: 采取一种, 边取余边取整的方法, 让这题变的简单许多~ AC代码: #include<stdio.h> #include<string.h> ...

  8. UVA 424 (13.08.02)

     Integer Inquiry  One of the first users of BIT's new supercomputer was Chip Diller. Heextended his ...

  9. UVA 10106 (13.08.02)

     Product  The Problem The problem is to multiply two integers X, Y. (0<=X,Y<10250) The Input T ...

随机推荐

  1. 使用Swing的JSpinner组件设置日期时间选择器

    代码: //获得时间日期模型 SpinnerDateModel model = new SpinnerDateModel(); //获得JSPinner对象 JSpinner year = new J ...

  2. 为什么要使用String

    最近在培训课期间指导初学者.任务之一就是要大家完成一个类,要求这个类对key为String类型的map执行dwarwle操作.其中一位学员完成的类中,有如下方法: void dwarwle(HashM ...

  3. Mac 上自带TFTP Server 软件的使用

    搬瓦工搭建SS教程 1.TFTP协议 简单文件传输协议Trivial File Transfer Protocol (TFTP)是一个基于UDP协议的简单的.低开销的文件传输协议,允许客户端get或者 ...

  4. 八皇后II

    用一个数组state记录已经选择的每一行皇后所在的位置,DFS count = 0 N = 8 state = [0]*N def dfs(row): global count for col in ...

  5. html5那些事儿

    一.优势1.标签的改变:<header>,<footer>,<dialog>,<aside>,<figure>,<section> ...

  6. ARM 内核

    ARM相关知识: ARM核:A8,ARM11,ARM9 指令架构:ARMv7,ARMv6,ARMv4 ARM核分为两个阵营: 经典型:ARM7,ARM9,ARM11 Cortex: Cortex A: ...

  7. 20162318 2018-2019-2《网络对抗技术》Exp1 PC平台逆向破解

    一.实验目标 本次实践的对象是一个名为pwn1的linux可执行文件. 该程序正常执行流程是:main调用foo函数,foo函数会简单回显任何用户输入的字符串. 该程序同时包含另一个代码片段,getS ...

  8. Windows Server 2008 R2下将nginx安装成windows系统服务

    一直在Linux平台上部署web服务,但是最近的一个项目,必须要用windows,不得已再次研究了nginx在windows下的表现,因为Apache httpd在Windows下表现其实也不算太好, ...

  9. bzoj 4017 子序列和的异或以及异或的和

    位运算很好的一个性质是可以单独每一位考虑..... 题解请看:http://blog.csdn.net/skywalkert/article/details/45401245 对于异或的和,先枚举位, ...

  10. [Visual Studio] 重置默认设置 还原默认设置

    恢复默认设置的2种方法 如果VS出现问题或设置变乱,可以通过恢复默认设置使之回到安装成功时的状态,从而解决出现的问题.VS恢复默认设置的方法有2种,分别是:通过“导入和导出设置”实现和通过命令实现. ...