heapsort3()
Sorts an array in-place while following the reordering of the elements in two other arrays.
arr – A 1d ndarray with the values to sort
ndarray
co1 – Two 1d ndarray instances of the same length as arr with should be reordered along with arr.
co2 – Two 1d ndarray instances of the same length as arr with should be reordered along with arr.
None, this is an in-place operation.