Database
aa1295.asc
Associated article: Generating Sequential Keys in an Arbitrary Radix
Tags: Database Tools
Published source code accompanying Gene Callahan article in "Algorithm Alley" which discusses how you go about generating sequential keys in an arbitrary radix.
_ALGORITHM ALLEY_
by Gene Callahan
edited by Bruce Schneier
Listing One
/* given an ASCII character, what is its value in the base? */
#define MAX_BASE 256
typedef struct baserep
{
int Radix;
int NumValues[MAX_BASE];
char CharValues[MAX_BASE + 1];
} BaseRep;
BaseRep ...


