我有一个2d列表数组,我在下面的循环中添加字符。我需要能够按照lexiographical顺序对2d数组的每个子容器进行排序。不幸的是,Collections.sort(list)在这种情况下不起作用。
List<Character>[][] list = new LinkedList[n][n];
for (int j = 0; j < n; ++j)
{
for (int m = 0; m < 1; m++)
{
// Here is the problem
list[j][m].add(new Character('b'));
// sort the array and continue
}
}