我有一个程序,用户输入一个名字列表。我有一个开关案例转到一个函数,我希望按字母顺序打印名称。
public static void orderedGuests(String[] hotel)
{
//??
}
我试过了两次
Arrays.sort(hotel);
System.out.println(Arrays.toString(hotel));
和
java.util.Collections.sort(hotel);
答案 0 :(得分:22)
很奇怪,你的代码似乎对我有用:
import java.util.Arrays;
public class Test
{
public static void main(String[] args)
{
// args is the list of guests
Arrays.sort(args);
for(int i = 0; i < args.length; i++)
System.out.println(args[i]);
}
}
我使用“java Test Bobby Joe Angel”运行该代码,这是输出:
$ java Test Bobby Joe Angel
Angel
Bobby
Joe
答案 1 :(得分:4)
你尝试的第一件事似乎工作正常。这是一个示例程序 按&#34;开始&#34; this page顶部的按钮运行它以自己查看输出。
import java.util.Arrays;
public class Foo{
public static void main(String[] args) {
String [] stringArray = {"ab", "aB", "c", "0", "2", "1Ad", "a10"};
orderedGuests(stringArray);
}
public static void orderedGuests(String[] hotel)
{
Arrays.sort(hotel);
System.out.println(Arrays.toString(hotel));
}
}
答案 2 :(得分:2)
你可以使用Arrays#sort()
,它完美运作。
见这个例子:
String [] a = {"English","German","Italian","Korean","Blablablabla.."};
//before sort
for(int i = 0;i<a.length;i++)
{
System.out.println(a[i]);
}
Arrays.sort(a);
System.out.println("After sort :");
for(int i = 0;i<a.length;i++)
{
System.out.println(a[i]);
}
答案 3 :(得分:1)
以下是有效的代码:
import java.util.Arrays;
import java.util.Collections;
public class Test
{
public static void main(String[] args)
{
orderedGuests1(new String[] { "c", "a", "b" });
orderedGuests2(new String[] { "c", "a", "b" });
}
public static void orderedGuests1(String[] hotel)
{
Arrays.sort(hotel);
System.out.println(Arrays.toString(hotel));
}
public static void orderedGuests2(String[] hotel)
{
Collections.sort(Arrays.asList(hotel));
System.out.println(Arrays.toString(hotel));
}
}
答案 4 :(得分:1)
java.util.Collections.sort(listOfCountryNames, Collator.getInstance());
答案 5 :(得分:1)
按字母顺序,我假设顺序是:A | a&lt; B | b&lt; ç| C ... 希望这是@Nick正在寻找的,并且答案遵循上述假设。
我建议使用Comparator-interface的类实现比较方法:
public int compare(Object o1, Object o2) {
return o1.toString().compareToIgnoreCase(o2.toString());
}
并从调用方法调用带有自定义Comparator的Arrays.sort方法:
Arrays.sort(inputArray, customComparator);
观察结果: 输入数组:&#34; Vani&#34;,&#34; Kali&#34;,&#34; Mohan&#34;,&#34; Soni&#34;,&#34; kuldeep&#34;,&# 34;阿伦&#34;
输出(按字母顺序排列)是: Arun,Kali,kuldeep,Mohan,Soni,Vani
输出(执行Arrays.sort(inputArray)的自然顺序是: Arun,Kali,Mohan,Soni,Vani,kuldeep
因此,在自然排序的情况下,[Vani&lt; kuldeep]我对字母顺序的理解并不是我想要的。
更多地了解自然和字母/词汇顺序访问discussion here
答案 6 :(得分:1)
您可以使用Arrays.sort()方法。这是一个例子,
import java.util.Arrays;
public class Test
{
public static void main(String[] args)
{
String arrString[] = { "peter", "taylor", "brooke", "frederick", "cameron" };
orderedGuests(arrString);
}
public static void orderedGuests(String[] hotel)
{
Arrays.sort(hotel);
System.out.println(Arrays.toString(hotel));
}
}
<强>输出强>
[布鲁克,卡梅伦,弗雷德里克,彼得,泰勒]
答案 7 :(得分:1)
CompareTo()
方法:根据Unicode字符值比较两个字符串。
import java.util.*;
public class Test {
int n,i,temp;
String names[n];
public static void main(String[] args) {
String names[5] = {"Brian","Joshua","Louis","David","Marcus"};
for(i=0;i<5;i++){
for(j=i+1;i<n;j++){
if(names[i].CompareTo(names[j]>0) {
temp=names[i];
names[i]=names[j];
names[j]=temp;
} else
System.out.println("Alphabetically Ordered");
}
}
}
答案 8 :(得分:0)
**//With the help of this code u not just sort the arrays in alphabetical order but also can take string from user or console or keyboard
import java.util.Scanner;
import java.util.Arrays;
public class ReadName
{
final static int ARRAY_ELEMENTS = 3;
public static void main(String[] args)
{
String[] theNames = new String[5];
Scanner keyboard = new Scanner(System.in);
System.out.println("Enter the names: ");
for (int i=0;i<theNames.length ;i++ )
{
theNames[i] = keyboard.nextLine();
}
System.out.println("**********************");
Arrays.sort(theNames);
for (int i=0;i<theNames.length ;i++ )
{
System.out.println("Name are " + theNames[i]);
}
}
}**
答案 9 :(得分:0)
Arrays.sort(字符串数组); 这将根据Unicode字符值对字符串数组进行排序。在字符串开头包含大写字符的所有字符串将按字母顺序排在排序列表的顶部,后跟所有带小写字符的字符串。 因此,如果数组包含以大写字符和小写字符开头的字符串,则排序后的数组不会返回不区分大小写的顺序字母列表
String[] strArray = { "Carol", "bob", "Alice" };
Arrays.sort(strList);
System.out.println(Arrays.toString(hotel));
输出是:Alice,Carol,bob,
如果你需要对字符串进行排序而不考虑大小写,那么你需要为Arrays.sort()提供第二个参数,一个Comparator。这样的比较器已经为我们编写,可以在名为CASE_INSENSITIVE_ORDER的String类中作为静态访问。
String[] strArray = { "Carol", "bob", "Alice" };
Arrays.sort(stringArray, String.CASE_INSENSITIVE_ORDER);
System.out.println(Arrays.toString(strArray ));
输出是:Alice,bob,Carol
答案 10 :(得分:0)
public static String[] textSort(String[] words) {
for (int i = 0; i < words.length; i++) {
for (int j = i + 1; j < words.length; j++) {
if (words[i].compareTo(words[j]) > 0) {
String temp = words[i];
words[i] = words[j];
words[j] = temp;
}
}
}
return words;
}