我正在寻找对整数数组列表的数组列表进行排序,我需要帮助吗?
我被告知我需要实现比较器或比较器,然后使用 collection.sort 按顺序对列表列表进行排序......
ArrayList<ArrayList<Integer>> g = new ArrayList<ArrayList<Integer>>()
If you look at the list of list as the following example:
C1 – 5,4,10
C2 – 3,2,1
C3 – 7,8,6
First it will be sorted like this:
C1 – 4,5,10
C2 – 1,2,3
C3 – 6,7,8
Then it will be sorted like this
C1 – 1,2,3
C2 – 4,5,6
C3 – 7,8,10