Unit mwSMSort

--------------------------------------------------------------------} { TSMSort V 1.0 } { Written by Martin Waldenburg 1996. } { Copyright by Martin Waldenburg 1996. All rights reserved. } { This is FreeWare. } { Not testet with Delphi1. } { It's provided as is, without a warranty of any kind. } { You use it at your own risc. } { You may use and distribute it freely. } { But You may not say it's your work. } { If you distribute it you must provide all Files. } {--------------------------------------------------------------------} { This demonstrates the implementation and use of a sortable single } { linked list using MergeSort. } { Enjoy it's free. } {--------------------------------------------------------------------

Classes

TmwSMSort -

Functions

Types

Line
PLine

Constants

Variables


Functions


Types


Line = record
next : PLine;
key : string;
end;

PLine = ^Line

Constants


Variables