如何根据字符串的长度对List <String>进行排序并打印前N个元素

AB2*_*B25 2 java string arraylist

您的程序应该读取输入文件(程序的第一个参数).第一行包含数字'N'的值,后跟多行.您可以假设输入文件格式正确,第一行的数字即'N'是有效的正整数.eg

这是我的输入:

2
Hello World

CodeEval
快速福克斯
一个
旧金山

期望的输出应该是:

旧金山
你好世界

这是我的代码:

 class Longest
 {
public static void main(String args[]) throws FileNotFoundException  
{
    BufferedReader in = null;
    List<String> myList = new ArrayList<String>();
    try 
    {   
        in = new BufferedReader(new FileReader("C:\\filename.txt"));
        String str;
        while ((str = in.readLine()) != null) 
        {
            if (str.length() == 0) continue;                                

            myList.add(str);
        }
    } 
    catch (IOException e) 
    {
        e.printStackTrace();
    } 
    System.out.println("Contents of the ArrayList : "+myList);
    System.out.println("Size of the ArrayList : "+myList.size());
    String s = myList.remove(0);
    System.out.println(System.getProperty("line.separator"));
    System.out.println("Number of lines to be printed : "+s);
    System.out.println("After removing first element of ArrayList : "+myList);
    System.out.println("Size of the ArrayList : "+myList.size());               

    Comparator comparator=Collections.reverseOrder();                   
    Collections.sort(myList,comparator);
    System.out.println("After sorting ArrayList in Descending Order :"+myList);


    int x = Integer.parseInt(s);
    System.out.println(System.getProperty("line.separator"));


for (String s1 : myList) {
System.out.println(s1);
}
System.out.println(System.getProperty("line.separator"));

for(int i=0; i<x; i++){
        System.out.println(myList.get(i));
    }

}   

}
Run Code Online (Sandbox Code Playgroud)

但我得到这个输出:

旧金山
快狐

我哪里错了?

Dev*_*lus 11

默认排序,将根据字母索引对列表进行排序.如果你想对其他标准进行排序,比如你的长度,你必须实现自己的标准Comparator

    Comparator<String> x = new Comparator<String>()
    {
        @Override
        public int compare(String o1, String o2)
        {
            if(o1.length() > o2.length())
                return -1;

            if(o2.length() > o1.length())
                return 1;

            return 0;
        }
    };

    Collections.sort(mylist,  x);
Run Code Online (Sandbox Code Playgroud)