Suppose that I have an (unsorted in any way) array:
[ 12 64 35 ]
[ 95 89 95 ]
[ 32 54 09 ]
[ 87 56 12 ]
I want to sort it so that the second column is in ascending order:
[ 32 54 09 ]
[ 87 56 12 ]
[ 12 64 35 ]
[ 95 89 95 ]
Here are the ways that I thought about dealing with this:
Make each [ x y z ] value into a list, and correlate each xyz value with an identifier, whose property is the y-value of the xyz value. Then, sort the identifiers. (I'm not sure if sorting Java arrays keeps the corresponding values in that row)
Use a hashmap to do the same thing as the previous
However, the above 2 methods are obviously somewhat wasteful and complicated since they rely on an external identifier value which is unneeded, so is there a simpler, faster, and more elegant way to do this?
Sorry if this is a dumb question, I'm not familiar at all with the way that Java sorts arrays.