当前位置:网站首页>Unix ls
Unix ls
2022-07-19 15:06:00 【zjsru_ Beginner】
author :lht
Title Description :
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 (1 ≤ N ≤ 100). 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.
Ideas :
Application c++ knowledge , First, get the longest word , And put all the words into the array and sort , Then use double loops to output with spaces in turn .
Be careful :
- Calculation when calculating the longest word
- Calculation of blank space when outputting
Code :
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string>
using namespace std;
const int maxlengh = 60;// Maximum restriction
string s[2000];
int main()
{
int n;
while(~scanf("%d",&n))
{
printf("------------------------------------------------------------\n");
int max_len = 0;
for(int i=0; i<n; i++)// Seek the longest
{
cin >> s[i];
int len = s[i].length();
if(len > max_len) max_len = len;
}
sort(s,s+n);// Sort
int line = (maxlengh-max_len)/(max_len+2) + 1;// That's ok
int row = (n-1)/line+1;// Column
for(int i=0; i<row; i++)
{
for(int j=0; j<line; j++)
{
int k = i+j*row;
if(k>=n)
continue;
cout << s[k];
int lf = max_len-s[k].length();// Extra space
if(j<line-1)lf+=2;
for(int m=0; m<lf; m++)
putchar(' ');
}
putchar('\n');
}
}
return 0;
}边栏推荐
猜你喜欢

Zabbix实现对Redis的监控

kube-proxy & Service & Endpoint

见鬼,U盘空间怎么少了,原来是EFI分区搞的鬼,删除它
[email protected]之moveActivityIdTo任务回退特殊案例分析"/>学习记录[email protected]之moveActivityIdTo任务回退特殊案例分析

UCAS. Deep learning Final examination questions and brief thinking analysis

44. Use orienmask for instance segmentation target detection, MNN deployment and ncnn deployment

兩種虛擬機的比較

BigScience 开源 Bloom 的自然语言处理模型

Cilium & Hubble
![[Axi] interpret the additional signals of the Axi protocol (QoS signal, region signal, and user signal)](/img/2b/15b3d831bba6aa772ad83f3ac91d23.png)
[Axi] interpret the additional signals of the Axi protocol (QoS signal, region signal, and user signal)
随机推荐
Is it safe to open a fund account online now?
Classes abstraites et dérivées
Preview of authtalk phase I | comprehensive dismantling of multi tenant solutions
2021.07.13 [station B] collapsed like this
Tianqin Chapter 9 after class exercise code
High performance pxie data preprocessing board based on kinex ultrascale series FPGA (ku060 +fmc sub card interface)
Oracle - lock
Characteristics of DMA mode
ORA-08103
TDesign compositionapi refactoring path
Leetcode 1275. 找出井字棋的获胜者
分布式事务总结
Achieve the effect of software login account by authorizing wechat ~ ~ unfinished
3438. Number system conversion
Several points to be analyzed in the domestic fpga/dsp/zynq scheme
Icml2022 | geometric multimodal comparative representation learning
BigScience 开源 Bloom 的自然语言处理模型
Istio XDS配置生成实现
Code runner for vs code, with more than 40million downloads! Support more than 50 languages
程序员 运维那些高薪的背后