Dec 112017
 
Fast sorting function in Turbo Pascal - source included.
File MRGSORT.ZIP from The Programmer’s Corner in
Category Pascal Source Code
Fast sorting function in Turbo Pascal – source included.
File Name File Size Zip Size Zip Type
!READ.ME 900 555 deflated
CLOCK.ASM 2772 1337 deflated
ERRMSGS.PAS 5348 1643 deflated
MRGDEMO.EXE 12450 7474 deflated
MRGDEMO.PAS 6314 2369 deflated
MRGSORT.DOC 1437 702 deflated
MRGSORT.PAS 4523 1660 deflated
TXTFILES.PAS 23190 6006 deflated
UCLOCK.PAS 1824 813 deflated

Download File MRGSORT.ZIP Here

Contents of the MRGSORT.DOC file


UNIT mrgsort;
(* By C.B. Falconer, public domain. This is based on a description *)
(* in Sedgewicks 'Algorithms', but modified for isolation to a TP *)
(* unit, with a generalized linkage to the items to sort. *)

(* Since the 'info' field of a linknode is never used here, the *)
(* actual record may be designed as the application demands, so *)
(* long as the FIRST item in it is the 'next' pointer. Care must *)
(* then be taken not to modify the info field of 'null'. *)

(* The user defined 'greater' function will receive whatever type *)
(* of pointer is passed in to sort, and never the null pointer. *)

(* The list to be sorted must be terminated with a 'next' that *)
(* contains the value 'null', and it must be the null defined here. *)

INTERFACE

TYPE
greaterf = FUNCTION(thing, than : pointer) : boolean;

VAR
null : pointer; (* used as NIL substitute for end marks *)

FUNCTION sort(root : pointer; greater : greaterf) : pointer;
(* This provides a logical level for passing in the 'greater' proc. *)
(* note that these procedures do not use the header link, i.e. the *)
(* pointers they receive carry actual list data. The pointers will *)
(* later be defined as holding only the next and an 'info' pointer. *)
(* The info pointer will not be used here, so can be of any type. *)

IMPLEMENTATION
j


 December 11, 2017  Add comments

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)