【华为OJ】【014-字串的连接最长路径查找】

【华为OJ】【算法总篇章】

【华为OJ】【014-字串的连接最长路径查找】

【工程下载】

题目描述

给定n个字符串,请对n个字符串按照字典序排列。

输入描述

输入第一行为一个正整数n(1≤n≤1000),下面n行为n个字符串(字符串长度≤100),字符串中只含有大小写字母。

输出描述

数据输出n行,输出结果为按照字典序排列的字符串。

输入例子

9
cap
to
cat
card
two
too
up
boat
boot

输出例子

boat
boot
cap
card
cat
to
too
two
up

算法实现

import java.io.File;
import java.io.FileNotFoundException;
import java.util.*;

/** * Author: 王俊超 * Date: 2015/12/22 13:59 * All Rights Reserved !!! */
public class Main {
    public static void main(String[] args) throws FileNotFoundException {
        Scanner scanner = new Scanner(System.in);
// Scanner scanner = new Scanner(Main.class.getClassLoader().getResourceAsStream("data.txt"));

        while (scanner.hasNext()) {
            int num = Integer.parseInt(scanner.nextLine());
            List<String> list = new ArrayList<>(num);

            while ((--num) >= 0) {
                list.add(scanner.nextLine());
            }

            Collections.sort(list);

            for (String s : list) {
                System.out.println(s);
            }
        }

        scanner.close();
    }
}

你可能感兴趣的:(java,算法,数据,华为)