首页 > 其他分享 >代码对齐(Alignment of Code)

代码对齐(Alignment of Code)

时间:2022-11-28 18:35:00浏览次数:44  
标签:Code int list code each 对齐 line Alignment first


Alignment of Code

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 958    Accepted Submission(s): 230
Problem Description

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 p 2 - 2; the third words on each line are printed at the minimal possible position p 3, 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 begins with an integer T. The next T blocks each represents a case. Each case contains one or more lines of the code up to the end of case mark-a single '@' in a single line. All lines 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 for each case.


 



Output


For each case, 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


1
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


【分析】

       以空格为界将每行中的每个“词”储存起来,由于每行的“词”不定,所以用链表进行储存(当然也可以用数组,只要数组的大小足够大),那么每一行形成一个链表,就有多个链表,构成一个数组。在读取“词”的过程中,记录每一列中“词”最大的长度。记录在一个链表中(这个链表的每个元素是输入文本的每一列词最大长度的值)。

/*
java中字符串的split方法的参数含义:
public String[] split(String regex)根据给定的正则表达式的匹配来拆分此字符串.split("\\s+") 中
\\s表示 空格,回车,换行等空白符,
+号表示一个或多个的意思*/

用java语言编写程序,代码如下:


import java.util.ArrayList;
import java.util.Scanner;
//终于对了~~~!!注意格式问题!!
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int t = input.nextInt();
input.nextLine();//注意读取回车符。这是我第二次吃大亏了!!!

for(int ti = 0; ti < t; ti++) {
ArrayList<String>[] list = new ArrayList[1001];
ArrayList<Integer> colsMaxLen = new ArrayList<Integer>();
for(int i = 0; i < 1001; i++) {
list[i] = new ArrayList<String>();
colsMaxLen.add(0);
}

String s;
String[] tempArr;
int arrLen = 0;
int line = 0;
while(true) {
s = input.nextLine();
if(s.equals("@"))
break;

tempArr = s.split("\\s+");
//上述正则表达式中 \\s表示 空格,回车,换行等空白符,+号表示一个或多个的意思,

arrLen = tempArr.length;
int first = 0;
//为什么要有下面的语句的呢?理由是用split切割时,字符串前面有空格的话,似乎会多切出一个空字符,那么这个空字符就应该省略
if(tempArr[0].equals(""))
first = 1;

for(int pos = 0; first < arrLen; first++, pos++) {
list[line].add(tempArr[first]);
if(colsMaxLen.get(pos) < tempArr[first].length())
colsMaxLen.set(pos, tempArr[first].length());
}

line++;
}

print(line, list, colsMaxLen);
}

}

public static void print(int line, ArrayList<String>[] list, ArrayList<Integer> colsMaxLen) {
for(int i = 0; i < line; i++) {
for(int j = 0; j < list[i].size() - 1;j++) {
//printWord(list[i].get(j), colsMaxLen.get(j), j);
if(j != 0)
System.out.print(" ");
System.out.printf("%-" + colsMaxLen.get(j) + "s", list[i].get(j));
}
//注意最后每一行最后一个“词”不用进行格式化,而是直接输出回车就行。
if(list[i].size() != 1)
System.out.print(" ");
System.out.println(list[i].get(list[i].size() - 1));
}
}

/*public static void printWord(String s, int len, int cols) {
if(cols != 0)
System.out.print(" ");
System.out.print(s);
for(int i = 0; i < len - s.length(); i++)
System.out.print(" ");
}*/
}




标签:Code,int,list,code,each,对齐,line,Alignment,first
From: https://blog.51cto.com/u_15894233/5893365

相关文章

  • termux安装完整linux(ubuntu)、python、vscode-web
    1安装Ubuntu#需要先安装proot-distroaptinstallproot-distro#安装ubuntuproot-distroinstallubuntu2登录Ubuntuproot-distrologinubuntu3安装指定版本py......
  • Java生成二维码,基于QRCode
    packagetest;importjava.io.*;importjava.util.Date;importjava.awt.*;importjava.awt.image.*;importjavax.imageio.*;importcom.swetake.util.Qrcode;publicclass......
  • Xcode编译错误__NSCFConstantString
    __NSCFConstantString:主要错误就是数据类型造成的,然后就是检查哪个地方造成的数据类型调用错误错误一:'-[__NSCFConstantString_imageThatSuppressesAccessibilityHairlineT......
  • (GCC) GCC 结构体内存对齐规则
    GCCstruct内存对齐规则结构体起始地址需要被其中成员类型最大的大小所整除;每个成员起始地址需要被其类型大小所整除,如int32_t类型成员内存对齐到4B;如果成员有子结构......
  • Entity Framework Code-First 文章汇集
    为了支持以设计为中心的开发流程,EF4还更多地支持以代码为中心(code-centric),我们称为代码优先的开发,代码优先的开发支持更加优美的开发流程,它允许你:......
  • Net6 CodeFirst注入MySQL数据库上下文
    十年河东,十年河西,莫欺少年穷学无止境,精益求精 2022太难了,好多公司倒闭,互联网不景气,工作难找,苏州的C#/Net程序员的招聘更是少之又少,java,C,等其他语言也是供大于求,总之,难上......
  • utf8mb4_general_ci和utf8mb4_unicode_ci的区别
    2022年11月28日08:50:31官方mysql8.0文档地址:https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-sets.html_general_ciVS_unicode_ci排序规则对于任何Unico......
  • 长度最小子数组-LeetCode209 滑动窗口
    力扣:https://leetcode.cn/problems/minimum-size-subarray-sum/题目  给定一个含有 n 个正整数的数组和一个正整数target。找出该数组中满足其和≥target的长......
  • leetcode 10 - Regular Expression Matching - hard
    Givenaninputstring s andapattern p,implementregularexpressionmatchingwithsupportfor '.' and '*' where:'.' Matchesanysinglecharacter.​......
  • Codeforces Round #828 (Div. 3) F
    F.MEXvsMED一开始写了个感觉每个点只会搞一次的那种线性感性理解了很对结果又wa又tintleft=l-z-1,right=n-r;intcnt=2*now;for(intle......