Sort/Merge version 0.1 ======================= An implementation of merge sort - taking some lists which are each individually sorted, and combining them into a single sorted list. This needs fewer comparisons than simply concatenating the lists and calling sort() on the whole lot, so if the comparison function is slow or the lists are big, it can be faster. INSTALLATION To install this module type the following: perl Makefile.PL make make test make install COPYRIGHT AND LICENCE Copyright 2002 Ed Avis . This is free software; you may distribute it under the same terms as perl itself. There is no warranty.