/******************************************************* Proj3Aux.H CMSC-341 Spring 2004 Project3 Spencer Shimko, Section 001, sshimko1 Created: 13 March 2004 Current: 13 March 2004 Auxillary project interface. Main driver module. I have read and I understand the course policy on cheating. By submitting the following program, I am stating that the program was produced by my individual effort. *********************************************************/ #ifndef _PROJ3AUX_H #define _PROJ3AUX_H #include "BinarySearchTree.H" /* * Calls BST constructor and inserts random numbers into created tree * Param seed: random seed * Param num: number of nodes to create * Returns: created BST */ BinarySearchTree CreateBinaryTree( int, int ); /* * Display a tree * Param bt: BST to display * Param height: Height to display to */ void DisplayTreeData( BinarySearchTree &,int ); #endif