gpt4 book ai didi

java - 按字母顺序排序器不工作

转载 作者:行者123 更新时间:2023-12-01 15:25:36 25 4
gpt4 key购买 nike

我正在编写一个程序,该程序按字母顺序对用户通过 stdin 输入的名称进行排序。名称已正确选取,但排序不起作用。有人可以帮我找出原因吗?

这是我的代码...

public class Sort {
public static void main(String[] args) {
while (!StdIn.isEmpty()){
String names = StdIn.readString();
String [] name = new String[1];

for (int i = 0; i < 1; i++) {
name[i] = names;
}

Arrays.sort(name);

for (int i = 0; i < 1; i ++){
System.out.println(name[1]);
}
}
}
}

最佳答案

除了注释中提到的代码存在明显问题之外,我不会使用数组。相反,请使用 java.util.Collection实现如 java.util.TreeSet<String>这是自动排序的。

关于java - 按字母顺序排序器不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10201940/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com