You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.0 KiB
C++

TestBinaryHeap.cpp - Test program for binary heaps
#include <iostream.h>
#include "BinaryHeap.h"
#include "dsexceptions.h"
// Test program
int main( )
{
int numItems = 10000;
BinaryHeap<int> h( numItems );
int i = 37;
int x;
try
{
for( i = 37; i != 0; i = ( i + 37 ) % numItems )
h.insert( i );
for( i = 1; i < numItems; i++ )
{
h.deleteMin( x );
if( x != i )
cout << "Oops! " << i << endl;
}
for( i = 37; i != 0; i = ( i + 37 ) % numItems )
h.insert( i );
h.insert( 0 );
h.insert( i = 999999 ); // Should overflow
}
catch( Overflow )
{ cout << "Overflow (expected)! " << i << endl; }
return 0;
}