Database
aa0202.txt
Associated article: Feb02: Algorithm Alley
Tags: Database
Published source code accompanying the article by William R. Mahoney in which he presents a record-selection algorithm for your database toolbox.
Algorithm Alley: Yet Another Record Selection Algorithm by William R. Mahoney Listing One /* ================================================================= random record selection demo Author: Bill Mahoney ================================================================== */ #include <stdlib.h> // for rand/random #include <iostream> const int N_sub_t = 967; // Some "known ...


