I have a two-dimension ArrayList that contains double values:
ArrayList<ArrayList<Double>> data = new ArrayList<ArrayList<Double>>();
In analogy with classic arrays , I would like to sort the "cols" of this matrix :I want to take the items having the same index in the sub ArrayLists, and then sort them. Like calling Collections.sort() for every column... By rows I mean the outer level and inner level are columns.
What is the proper way to do this? I thought about iterating over the matrix to invert it and then sort each row with Collections.sort() ? but maybe it's not the best solution because the matrix is about 400*7000 .
I can't use classic arrays since the size of the matrix is unknown.
Thanks for help.
0,0and the largest atN,M? – noMAD Apr 5 '12 at 20:37