Database
super.asc
Associated article: Supercharging Sequential Searches
Tags: Database Parallel
_SUPERCHARGING SEQUENTIAL SEARCHES_ by Walter Williams [LISTING ONE] /*********************************************************************** * SS.C -- Sample Sorted Sequential Suffix Search (c) 1989 Walter Williams ***********************************************************************/ #include <stdio.h> #include <string.h> #include <malloc.h> #ifndef TRUE #define TRUE 1 #define FALSE 0 #...


