Documentation

Init.Data.Array.QSort

@[inline]
def Array.qsort {α : Type u_1} (as : Array α) (lt : ααBool := by exact (· < ·)) (low : Nat := 0) (high : Nat := as.size - 1) :

Sorts an array using the Quicksort algorithm.

The optional parameter lt specifies an ordering predicate. It defaults to LT.lt, which must be decidable to be used for sorting. Use Array.qsortOrd to sort the array according to the Ord α instance.

The optional parameters low and high delimit the region of the array that is sorted. Both are inclusive, and default to sorting the entire array.

Equations
  • One or more equations did not get rendered due to their size.
Instances For
    @[irreducible, specialize #[]]
    def Array.qsort.sort {α : Type u_1} (lt : ααBool := by exact (· < ·)) {n : Nat} (as : Vector α n) (lo hi : Nat) (hlo : lo < n := by omega) (hhi : hi < n := by omega) :
    Vector α n
    Equations
    • One or more equations did not get rendered due to their size.
    Instances For
      def Array.qsortOrd {α : Type u_1} [ord : Ord α] (xs : Array α) :

      Sorts an array using the Quicksort algorithm, using Ord.compare to compare elements.

      Equations
      Instances For