Source of bst1.cpp


  1: /** @file bst1.cpp
  2: Contains the (partial) implementation of a BinarySearchTree template class.
  3: */

  5: template<typename DataType>
  6: BinarySearchTree<DataType>::BinarySearchTree()
  7: {
  8:     rootPtr = nullptr;
  9: }