views:

132

answers:

1

I have 9 different ArrayList and I want to have a list of the top 5.

I'm thinking of sorting those ArrayLists by their sizes.

Is it possible to do that? If so, how can I achieve that?


After a few try i finally got it working, just want to share it with everyone.

it will be better to get the size of the arraylist and add it to the big arraylist

                                                // creates an ArrayList that holds ArrayLists 
                                                List allTheLists = new ArrayList(); 
                                                allTheLists.add(pbaustraliaList.size());
                                                allTheLists.add(pbotherList.size()); 
                                                allTheLists.add(pbunitedStatesList.size()); 
                                                allTheLists.add(pbunitedKingdomList.size()); 
                                                allTheLists.add(pbchinaList.size()); 
                                                allTheLists.add(pbgermanyList.size()); 
                                                allTheLists.add(pbindiaList.size()); 
                                                allTheLists.add(pbjapanList.size()); 
                                                allTheLists.add(pbsingaporeList.size()); 

                                                Comparator comparator = Collections.reverseOrder();
                                                Collections.sort(allTheLists,comparator);

                                                //display elements of ArrayList    
                                                System.out.println("ArrayList elements after sorting in descending order : ");    
                                                for(int i=0; i<allTheLists.size(); i++) {     
                                                    System.out.println(allTheLists.get(i));   
                                                }   
+13  A: 

What you could do is the following:

// this List of lists will need to contain 
// all of the ArrayLists you would like to sort
List<ArrayList> allTheLists; 
Collections.sort(allTheLists, new Comparator<ArrayList>(){
    public int compare(ArrayList a1, ArrayList a2) {
        return a2.size() - a1.size(); // assumes you want biggest to smallest
    }
});

This will sort the list of lists by the length of each list. The first element in the sorted list will be the longest list, and the last one will be the shortest list.

Then, you can iterate through the first 5 lists to see what the top 5 were.

Some links for reference:


Depending on how you have your ArrayLists stored, the code to create a List<ArrayList> would look something like this:

// creates an ArrayList that holds ArrayLists
List<ArrayList> allTheLists = new ArrayList<ArrayList>();
allTheLists.add(yourList1);
allTheLists.add(yourList2);
...
allTheLists.add(yourList9);
jjnguy
+1, but I would use List instead of ArrayList as type parameter.
pcjuzer
@pcjuzer, thanks. I would too. But this is tailored to the needs of the question.
jjnguy
Changing all instances of `ArrayList` to `List<?>` works just as well in this specific case, yet also is more extensible and avoids raw type warnings.
Andrzej Doyle
ermm..how to populate my 9 arraylist into allTheList? sry for the dumb question. i'm still learning
@claire, not a dumb question. See my edit. (Once I make it)
jjnguy