Database
part.asc
Associated article: Partitions
Tags: Database Design
_PARTITIONS_
by Joe Celko
Listing One
PROGRAM TestBellNumbers;
VAR n : INTEGER;
FUNCTION Bell(m : INTEGER) : INTEGER;
{ total number of partitions for a set of n elements }
VAR i, sum : INTEGER;
FUNCTION Sterling (m, n : INTEGER) : INTEGER;
{ partition of m things ...


