Java教程

Java机试题:给定 n 个字符串,请对 n 个字符串按照字典序排列。

本文主要是介绍Java机试题:给定 n 个字符串,请对 n 个字符串按照字典序排列。,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

使用Arrays.sort(list)来排序,不能使用TreeSet,TreeSet会自动去重,也可以使用ArrayList,然后用Collections.sort(list)进行排序。

import java.util.*;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        boolean isNum = true;
        while(sc.hasNextLine()){
            int num = 0;
            if(isNum){
                num = Integer.valueOf(sc.nextLine());
            }
            String[] list = new String[num];
            for (int i = 0; i < num; i++) {
                list[i] = sc.nextLine();
            }
            Arrays.sort(list);
            for (int i = 0; i < list.length; i++) {
                System.out.println(list[i]);
            }
            isNum = false;
        }
    }
}

 

这篇关于Java机试题:给定 n 个字符串,请对 n 个字符串按照字典序排列。的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!