首页 > 代码库 > UVa 1593 - Alignment of Code

UVa 1593 - Alignment of Code

题目描述 : 输入若干行代码,按照要求格式输出,。各列单词尽量靠左,单词之间至少要一个空格。

思路 : 利用字符串数组找规律。  只要控制好边界其他的都很简单。  连测试用例都没有用,因为UVa网页老刷不出来。直接交代码QuickSubmit,只是担心会超时,但结果令人意外,竟然是AC。再来两道吧。      对了 我又不好意思的用了正则表达式。

代码 :

<p>import java.util.*;import java.util.regex.Matcher;import java.util.regex.Pattern;</p><p>public class Main1593 {</p><p> public static void main(String[] args) {  Scanner scan = new Scanner(System.in);  Pattern p = Pattern.compile("<a target=_blank href=http://www.mamicode.com/"file:///S">//S+");>

UVa 1593 - Alignment of Code