bitsort {bit} | R Documentation |
Low-level sorting: bit sort
Description
In one pass over the vector NA
s are handled according to parameter
na.last
by range_sortna
, then, if the vector is unsorted,
bit sort is invoked.
Usage
bitsort(x, na.last = NA, depth = 1)
Arguments
x |
an integer vector |
na.last |
|
depth |
an integer scalar giving the number of bit-passed before switching to quicksort |
Value
a sorted vector
Examples
bitsort(c(2L,0L,1L,NA,2L))
bitsort(c(2L,0L,1L,NA,2L), na.last=TRUE)
bitsort(c(2L,0L,1L,NA,2L), na.last=FALSE)
[Package bit version 4.0.5 Index]