DSA Assignment 3
DSA Assignment 3
Write a program for binary search tree that satisfies the following requirements:
The binary tree node will consist of an integer data value, a count value plus a
left and right pointer (all of which are private). The bst class will maintain a
binary search tree composed of zero or more binary tree nodes. The bst class
will maintain a private root_ptr variable using several public member functions
that represent the interface to the data structure.