Recabamos en todo el mundo on line y de esta manera traerte la respuesta a tu inquietud, en caso de dudas déjanos tu duda y responderemos sin falta.
Ejemplo 1: organizar las palabras de una oración en orden alfabético en java
// Arrange words of a sentence in alphabetical order in javaimportjava.util.Set;importjava.util.StringTokenizer;importjava.util.TreeSet;publicclassArrangeInAlphabeticalOrderpublicstaticvoidmain(String[] args)Set set =newTreeSet();String strInput ="hi all welcome to flower brackets blog";System.out.println("Before arranging sentence in alphabetical order: "+ strInput);StringTokenizer strToken =newStringTokenizer(strInput," ");while(strToken.hasMoreElements())
set.add(strToken.nextElement());System.out.println("After arranging sentence in alphabetical order: "+ set);
Ejemplo 2: Java compara cadenas alfabéticamente
String a ="HYRE";String b ="AGNYG";int compare = a.compareTo(b);if(compare <0)//a is smallerelseif(compare >0)//a is larger else//a is equal to b
Ejemplo 3: programa Java para ordenar nombres en orden alfabético
importjava.util.Scanner;publicclassSortNamesAlphabeticalOrderpublicstaticvoidmain(String[] args)int number;String str;Scanner sc1 =newScanner(System.in);System.out.println("Please enter number of strings: ");
number = sc1.nextInt();String[] names =newString[number];Scanner sc2 =newScanner(System.in);System.out.println("Enter all strings: ");for(int a =0; a < number; a++)
names[a]= sc2.nextLine();for(int a =0; a < number; a++)for(int b = a +1; b < number; b++)// java alphabetical sortif(names[a].compareTo(names[b])>0)
str = names[a];
names[a]= names[b];
names[b]= str;System.out.println("After sorting names in an alphabetical order: ");for(int a =0; a < number -1; a++)System.out.println(names[a]+", ");System.out.print(names[number -1]);
sc1.close();
sc2.close();
Ejemplo 4: lista de clasificación de Java alfabéticamente
Assuming that those are Strings, use the convenient static method sort…
java.util.Collections.sort(listOfCountryNames)
Si para ti ha resultado útil nuestro artículo, sería de mucha ayuda si lo compartes con el resto desarrolladores y nos ayudes a extender esta información.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)