Sort::Radix - A multiple passes distribution sort algorithm


Sort-Radix documentation  | view source Contained in the Sort-Radix distribution.

Index


NAME

Top

Sort::Radix - A multiple passes distribution sort algorithm

SYNOPSIS

Top

  use Sort::Radix;

  @array = qw(flow loop pool Wolf root sort tour);
  radix_sort(\@array);
  print "@array\n";

DESCRIPTION

Top

This is an implementation based on Jarkko's Wolf book (Mastering Algorithms with Perl, pp. 145-147).

By definition: radix sort is a multiple pass distribution sort algorithm that distributes each item to a bucket according to part of the item's key beginning with the least significant part of the key. After each pass, items are collected from the buckets, keeping the items in order, then redistribute according to the next most significant part of the key.

Radix sort is nice as it take N * M passes, where N is the length of the keys. It is very useful for sorting large volumes of keys of the same length, such as postal codes.

The algorithm will only works when the strings to be sorted are of the same length. Variable length strings therefore have to be padded with zeroes (\x00) to equalize the length.

BUGS

Top

Unknown so far. But please kindly inform if you find one ;-)

HISTORY

Top

Fixed warning caused by operator precedence and undefined error caused by misplacing the routines after __END__ marker.

SEE ALSO

Top

Sort::Merge, Sort::Fields

IMPLEMENTOR

Top

Edward Wijaya, <ewijaya@singnet.com.sg>

AUTHOR

Top

Jarkko Hietaniemi, <jhi@iki.fi>

COPYRIGHT AND LICENSE

Top


Sort-Radix documentation  | view source Contained in the Sort-Radix distribution.