Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a List<String> object that contains country names. How can I sort this list alphabetically?

share|improve this question
1  
have you at least tried google? – Mitch Wheat Apr 2 '09 at 7:44
6  
SO is more fun than googling! – willcodejavaforfood Apr 2 '09 at 14:21
13  
(shh: I found this by googling....) – Bryce Fischer Jun 14 '12 at 19:57
The old advice of "try googling" no longer works when the Stackoverflow question is the first hit on google. :/ – Cheeso Apr 11 at 18:35

5 Answers

Assuming that those are Strings:

 java.util.Collections.sort(listOfCountryNames)
share|improve this answer
If you have country names such as "UK" then that is going to be broken. – Tom Hawtin - tackline Apr 2 '09 at 13:54
In this case, you can pass in a Comparator as an extra argument. Implementing that Comparator would be the interesting part, though. – Thilo Apr 3 '09 at 0:54
2  
Implemeting the Comparator = use java.text.Collator.getInstance – Thilo Apr 22 '09 at 2:24

Solution with Collections.sort

If you are forced to use that List, or if your program has a structure like

  • Create List
  • Add some country names
  • sort them once
  • never change that list again

then Thilos answer will be the best way to do it. If you combine it with the advice from Tom Hawtin - tackline, you get:

java.util.Collections.sort(listOfCountryNames, Collator.getInstance());

Solution with a TreeSet

If you are free to decide, and if your application might get more complex, then you might change your code to use a TreeSet instead. This kind of collection sorts your entries just when they are inserted. No need to call sort().

Collection<String> countryNames = 
    new TreeSet<String>(Collator.getInstance());
countryNames.add("UK");
countryNames.add("Germany");
countryNames.add("Australia");
// Tada... sorted.

Side note on why I prefer the TreeSet

This has some subtle, but important advantages:

  • It's simply shorter. Only one line shorter, though.
  • Never worry about is this list really sorted right now becaude a TreeSet is always sorted, no matter what you do.
  • You cannot have duplicate entries. Depending on your situation this may be a pro or a con. If you need duplicates, stick to your List.
  • An experienced programmer looks at TreeSet<String> countyNames and instantly knows: this is a sorted collection of Strings without duplicates, and I can be sure that this is true at every moment. So much information in a short declaration.
  • Real performance win in some cases. If you use a List, and insert values very often, and the list may be read between those insertions, then you have to sort the list after every insertion. The set does the same, but does it much faster.

Using the right collection for the right task is a key to write short and bug free code. It's not as demonstrative in this case, because you just save one line. But I've stopped counting how often I see someone using a List when they want to ensure there are no duplictes, and then build that functionality themselves. Or even worse, using two Lists when you really need a Map.

Don't get me wrong: Using Collections.sort is not an error or a flaw. But there are many cases when the TreeSet is much cleaner.

share|improve this answer
If you have country names such as "UK" then that is going to be broken. – Tom Hawtin - tackline Apr 2 '09 at 13:55
Fixed it - do I get my upvote back, now? ;) – Lena Schimmel Apr 2 '09 at 14:20
I don't see any advantage to using TreeSet over sort. – DJClayworth Apr 2 '09 at 14:28
2  
A TreeSet will not stay sorted if the items are mutable. – Joshua Goldberg Oct 20 '11 at 22:20
2  
@JoshuaGoldberg I think it will not only get un-sorted, it will also stop working correctly. At least if the mutatation of the object affects its sorting order. The tree set relies on the items being sorted to perform its tasks (like searchting, removing, inserting...). – Lena Schimmel Dec 1 '11 at 12:43
show 5 more comments

Use the two argument for of Collections.sort. You will want a suitable Comparator that treats case appropriate (i.e. does lexical, not UTF16 ordering), such as that obtainable through java.text.Collator.getInstance.

share|improve this answer

You can create a new sorted copy (using guava):

List<String> sortedNames = Ordering.natural().sortedCopy(names);

or sort in place:

Collections.sort(names);
share|improve this answer

You can try using a method that I made.

String key - will be the order you want and in this case in alphabetically. Just put "abc...".

String list[] - the list you want to put in order using key.

int index - set as 0, will set the offset for the key.

    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()]);
}
share|improve this answer
11  
Sure, why to use java.util.Collections.sort(list) if I can write 30 lines of code :) – Jirka-x1 Nov 14 '12 at 13:44
3  
You can write it in assembler too! – Lluis Martinez Jan 9 at 18:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.