Sorting multidimensional array in Delphi 2007
问题 I have a multidimensional array similar to the one described below: Matrix => array( [0] => array( [0] => 7, [1] => 'hello' ), [1] => array( [0] => 3, [1] => 'there' ), [2] => array( [0] => 1, [1] => 'world' ), ) What I'm trying to achieve is to sort this array using the values of Matrix[i][0]. What would be the most efficient way to do this? I looked into the recursive QuickSort function possibility, but it's rather complicated as I'm multidimensional arrays. There are many examples of