जवाबों:
यह मानते हुए कि वे स्ट्रिंग्स हैं, सुविधाजनक स्थैतिक विधि का उपयोग करें sort
...
java.util.Collections.sort(listOfCountryNames)
यदि आपको उस सूची का उपयोग करने के लिए मजबूर किया जाता है, या यदि आपके कार्यक्रम की संरचना जैसी है
तब थिलोस का जवाब यह करने का सबसे अच्छा तरीका होगा। यदि आप इसे टॉम हॉल्टिन से सलाह के साथ जोड़ते हैं - डीललाइन करें , तो आप प्राप्त करें:
java.util.Collections.sort(listOfCountryNames, Collator.getInstance());
यदि आप निर्णय लेने के लिए स्वतंत्र हैं, और यदि आपका आवेदन अधिक जटिल हो सकता है, तो आप इसके बजाय ट्रीसेट का उपयोग करने के लिए अपना कोड बदल सकते हैं। इस तरह का संग्रह आपकी प्रविष्टियाँ तब सम्मिलित करता है जब उन्हें डाला जाता है। सॉर्ट () को कॉल करने की आवश्यकता नहीं है।
Collection<String> countryNames =
new TreeSet<String>(Collator.getInstance());
countryNames.add("UK");
countryNames.add("Germany");
countryNames.add("Australia");
// Tada... sorted.
इसके कुछ सूक्ष्म, लेकिन महत्वपूर्ण लाभ हैं:
TreeSet<String> countyNames
और तुरंत जानता है: यह डुप्लिकेट के बिना स्ट्रिंग्स का एक सॉर्ट किया गया संग्रह है, और मुझे यकीन है कि यह हर पल सच है । एक छोटी सी घोषणा में इतनी जानकारी।सही कार्य के लिए सही संग्रह का उपयोग करना संक्षिप्त और बग मुक्त कोड लिखने की कुंजी है। यह इस मामले में प्रदर्शनकारी नहीं है, क्योंकि आप सिर्फ एक लाइन बचाते हैं। लेकिन मैंने यह गिनना बंद कर दिया है कि मैं किसी व्यक्ति को सूची का उपयोग करते समय कितनी बार देखता हूं जब वे यह सुनिश्चित करना चाहते हैं कि कोई भी गलतियां नहीं हैं, और फिर स्वयं उस कार्यक्षमता का निर्माण करें। या इससे भी बदतर, दो सूचियों का उपयोग करके जब आपको वास्तव में एक मानचित्र की आवश्यकता होती है।
मुझे गलत न समझें: कलेक्शंस.सॉर्ट का उपयोग करना कोई त्रुटि या दोष नहीं है। लेकिन ऐसे कई मामले हैं जब ट्रीसेट बहुत क्लीनर है।
आप जावा 8 स्ट्रीम या अमरूद का उपयोग करके एक नई छांट प्रति बना सकते हैं:
// Java 8 version
List<String> sortedNames = names.stream().sorted().collect(Collectors.toList());
// Guava version
List<String> sortedNames = Ordering.natural().sortedCopy(names);
एक अन्य विकल्प संग्रह API के माध्यम से इन-प्लेस को सॉर्ट करना है:
Collections.sort(names);
देर आए दुरुस्त आए! यहां बताया गया है कि हम इसे कैसे कर सकते हैं (केवल उद्देश्य सीखने के लिए) -
import java.util.List;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
class SoftDrink {
String name;
String color;
int volume;
SoftDrink (String name, String color, int volume) {
this.name = name;
this.color = color;
this.volume = volume;
}
}
public class ListItemComparision {
public static void main (String...arg) {
List<SoftDrink> softDrinkList = new ArrayList<SoftDrink>() ;
softDrinkList .add(new SoftDrink("Faygo", "ColorOne", 4));
softDrinkList .add(new SoftDrink("Fanta", "ColorTwo", 3));
softDrinkList .add(new SoftDrink("Frooti", "ColorThree", 2));
softDrinkList .add(new SoftDrink("Freshie", "ColorFour", 1));
Collections.sort(softDrinkList, new Comparator() {
@Override
public int compare(Object softDrinkOne, Object softDrinkTwo) {
//use instanceof to verify the references are indeed of the type in question
return ((SoftDrink)softDrinkOne).name
.compareTo(((SoftDrink)softDrinkTwo).name);
}
});
for (SoftDrink sd : softDrinkList) {
System.out.println(sd.name + " - " + sd.color + " - " + sd.volume);
}
Collections.sort(softDrinkList, new Comparator() {
@Override
public int compare(Object softDrinkOne, Object softDrinkTwo) {
//comparision for primitive int uses compareTo of the wrapper Integer
return(new Integer(((SoftDrink)softDrinkOne).volume))
.compareTo(((SoftDrink)softDrinkTwo).volume);
}
});
for (SoftDrink sd : softDrinkList) {
System.out.println(sd.volume + " - " + sd.color + " - " + sd.name);
}
}
}
जावा 8 का उपयोग करते हुए एक पंक्ति में:
list.sort(Comparator.naturalOrder());
के लिए दो तर्क का उपयोग करें Collections.sort
। आप एक उपयुक्त चाहते हैं जो Comparator
मामले का उचित व्यवहार करता है (जैसे कि शाब्दिक है, न कि UTF16 ऑर्डरिंग), जैसे कि प्राप्य java.text.Collator.getInstance
।
जब तक आप केवल उच्चारण-मुक्त अंग्रेजी में तार नहीं छांट रहे हैं, आप शायद ए का उपयोग करना चाहते हैं Collator
। यह सही ढंग से diacritical मार्क्स को सॉर्ट करेगा, केस और अन्य भाषा-विशिष्ट सामानों को नजरअंदाज कर सकता है:
Collections.sort(countries, Collator.getInstance(new Locale(languageCode)));
आप कोलाटर ताकत सेट कर सकते हैं, जेवाडॉक देख सकते हैं।
यहां स्लोवाक के लिए एक उदाहरण दिया गया है कि Š
बाद में कहां जाना चाहिए S
, लेकिन UTF के Š
बाद कहीं है Z
:
List<String> countries = Arrays.asList("Slovensko", "Švédsko", "Turecko");
Collections.sort(countries);
System.out.println(countries); // outputs [Slovensko, Turecko, Švédsko]
Collections.sort(countries, Collator.getInstance(new Locale("sk")));
System.out.println(countries); // outputs [Slovensko, Švédsko, Turecko]
यहाँ तुम क्या देख रहे हो
listOfCountryNames.sort(String::compareToIgnoreCase)
का उपयोग करके Collections.sort()
, हम एक सूची को सॉर्ट कर सकते हैं।
public class EmployeeList {
public static void main(String[] args) {
// TODO Auto-generated method stub
List<String> empNames= new ArrayList<String>();
empNames.add("sudheer");
empNames.add("kumar");
empNames.add("surendra");
empNames.add("kb");
if(!empNames.isEmpty()){
for(String emp:empNames){
System.out.println(emp);
}
Collections.sort(empNames);
System.out.println(empNames);
}
}
}
उत्पादन:
sudheer
kumar
surendra
kb
[kb, kumar, sudheer, surendra]
जावा 8 में समान: -
//Assecnding order
listOfCountryNames.stream().sorted().forEach((x) -> System.out.println(x));
//Decending order
listOfCountryNames.stream().sorted((o1, o2) -> o2.compareTo(o1)).forEach((x) -> System.out.println(x));
//Here is sorted List alphabetically with syncronized
package com.mnas.technology.automation.utility;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import org.apache.log4j.Logger;
/**
*
* @author manoj.kumar
*/
public class SynchronizedArrayList {
static Logger log = Logger.getLogger(SynchronizedArrayList.class.getName());
@SuppressWarnings("unchecked")
public static void main(String[] args) {
List<Employee> synchronizedList = Collections.synchronizedList(new ArrayList<Employee>());
synchronizedList.add(new Employee("Aditya"));
synchronizedList.add(new Employee("Siddharth"));
synchronizedList.add(new Employee("Manoj"));
Collections.sort(synchronizedList, new Comparator() {
public int compare(Object synchronizedListOne, Object synchronizedListTwo) {
//use instanceof to verify the references are indeed of the type in question
return ((Employee)synchronizedListOne).name
.compareTo(((Employee)synchronizedListTwo).name);
}
});
/*for( Employee sd : synchronizedList) {
log.info("Sorted Synchronized Array List..."+sd.name);
}*/
// when iterating over a synchronized list, we need to synchronize access to the synchronized list
synchronized (synchronizedList) {
Iterator<Employee> iterator = synchronizedList.iterator();
while (iterator.hasNext()) {
log.info("Sorted Synchronized Array List Items: " + iterator.next().name);
}
}
}
}
class Employee {
String name;
Employee (String name) {
this.name = name;
}
}
आप मेरे द्वारा बनाई गई विधि का उपयोग करके देख सकते हैं।
String key
- आप चाहते हैं और इस मामले में वर्णानुक्रम में आदेश होगा। बस "एबीसी ..." डाल दिया।
String list[]
- कुंजी का उपयोग करके आप जिस सूची को डालना चाहते हैं।
int index
- 0 के रूप में सेट, कुंजी के लिए ऑफसेट सेट करेगा।
public static String[] order(String key, String list[], int index) {
ArrayList<String> order_List = new ArrayList<String>();
ArrayList<String> temp_Order_List = null;
char[] key_char = key.toCharArray();
for (int offset = 0; offset < key_char.length; offset++) {
if (key_char.length >= offset + index) {
String str = (index > 1 ? list[0].substring(0, index - 1) : "")
+ new String(key_char, offset, 1);
for (int i = 0; i < list.length; i++) {
temp_Order_List = new ArrayList<String>();
for (int k = 0; k < list.length; k++) {
if (!order_List.contains(list[k])
&& !temp_Order_List.contains(list[k])) {
if (list[k].equalsIgnoreCase(str))
order_List.add(list[k]);
else if (list[k].toLowerCase().startsWith(str.toLowerCase())) {
temp_Order_List.add(list[k]);
}
}
}
if (temp_Order_List.size() > 0) {
if (temp_Order_List.size() > 1) {
String[] add = order(key,
temp_Order_List.toArray(new String[temp_Order_List
.size()]), index + 1);
for (String s : add) {
order_List.add(s);
}
} else {
order_List.add(temp_Order_List.get(0));
}
}
}
}
}
return order_List.toArray(new String[order_List.size()]);
}