Database
aa396.asc
Associated article: Algorithm Alley
Tags: Database Parallel
_ALGORITHM ALLEY_ by John DeVos edited by Bruce Schneier Listing One /* log2.h */ /* Prototypes */ long log2K (int); /* Defines & Macros */ #define LOG2_ERROR 666L /* Impossible result */ #define BASE_FACTOR 16384 #define BASE_SHIFT 14 #define ERR_C1 242 /* PA * BASE_FACTOR */ #define ...


