vector-algorithms-0.3.2: Efficient algorithms for vector arraysSource codeContentsIndex
Data.Vector.Algorithms.Radix
PortabilityNon-portable (scoped type variables, bang patterns)
StabilityExperimental
MaintainerDan Doel <dan.doel@gmail.com>
Description

This module provides a radix sort for a subclass of unboxed arrays. The radix class gives information on * the number of passes needed for the data type

  • the size of the auxiliary arrays
  • how to compute the pass-k radix of a value

Radix sort is not a comparison sort, so it is able to achieve O(n) run time, though it also uses O(n) auxiliary space. In addition, there is a constant space overhead of 2*size*sizeOf(Int) for the sort, so it is not advisable to use this sort for large numbers of very small arrays.

A standard example (upon which one could base their own Radix instance) is Word32:

  • We choose to sort on r = 8 bits at a time
  • A Word32 has b = 32 bits total

Thus, b/r = 4 passes are required, 2^r = 256 elements are needed in an auxiliary array, and the radix function is:

 radix k e = (e `shiftR` (k*8)) .&. 256
Synopsis
sort :: forall e m v. (PrimMonad m, MVector v e, Radix e) => v (PrimState m) e -> m ()
sortBy :: (PrimMonad m, MVector v e) => Int -> Int -> (Int -> e -> Int) -> v (PrimState m) e -> m ()
class Radix e where
passes :: e -> Int
size :: e -> Int
radix :: Int -> e -> Int
Documentation
sort :: forall e m v. (PrimMonad m, MVector v e, Radix e) => v (PrimState m) e -> m ()Source
Sorts an array based on the Radix instance.
sortBySource
:: (PrimMonad m, MVector v e)
=> Intthe number of passes
-> Intthe size of auxiliary arrays
-> Int -> e -> Intthe radix function
-> v (PrimState m) ethe array to be sorted
-> m ()
Radix sorts an array using custom radix information requires the number of passes to fully sort the array, the size of of auxiliary arrays necessary (should be one greater than the maximum value returned by the radix function), and a radix function, which takes the pass and an element, and returns the relevant radix.
class Radix e whereSource
Methods
passes :: e -> IntSource
The number of passes necessary to sort an array of es
size :: e -> IntSource
The size of an auxiliary array
radix :: Int -> e -> IntSource
The radix function parameterized by the current pass
Produced by Haddock version 2.6.1