#include #include "QuadraticProbing.h" using namespace std; // Simple main int main( ) { HashTable H; const int NUMS = 4000; const int GAP = 37; int i; cout << "Checking... (no more output means success)" << endl; for( i = GAP; i != 0; i = ( i + GAP ) % NUMS ) H.insert( i ); for( i = 1; i < NUMS; i += 2 ) H.remove( i ); for( i = 2; i < NUMS; i +=2 ) if( !H.contains( i ) ) cout << "Contains fails " << i << endl; for( i = 1; i < NUMS; i += 2 ) { if( H.contains( i ) ) cout << "OOPS!!! " << i << endl; } return 0; }