字串的鏈接最長路徑查找

題目描述

給定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.*;

/**
 * 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();
    }
}
相關文章
相關標籤/搜索