#include using namespace std; #include "Binomial_heap.h" int main() { Data_structures::Binomial_heap heap; for ( int i = 1; i <= 165; ++i ) { int n = (37*i) % 300; cout << "Pushing " << n << endl; heap.push( n ); } cout << heap << endl; heap.clear(); cout << heap << endl; for ( int i = 1; i <= 165; ++i ) { int n = (37*i) % 300; cout << "Pushing " << n << endl; heap.push( n ); } cout << heap << endl; return 0; }