Database
alley.asc
Associated article: Algorithm Alley
Tags: Database
_ALGORITHM ALLEY_
by Tom Swan
[LISTING ONE]
{ perm1.pas -- Algorithm #2: Permutation One by Tom Swan }
program Perm1;
const
MAX = 4;
var
i: Integer;
a: array[1 .. MAX] of Integer;
{ Display contents of global array a }
procedure ShowArray;
var
i: Integer;
begin
...


