quicksortHoare

fun <T : Comparable<T>> MutableList<T>.quicksortHoare(low: Int, high: Int)

Hoare’s partitioning chooses the first element as its pivot.

Receiver

MutableList

Parameters

low

Int

high

Int