Hello, i'm writing a project for a class. I need a step in the right direction as my professor is a little slow replying back to me. I'm still trying to learn c++ so please bear with me. The first part of the code i'm working on is the insert function:
@brief Insert specified value into BST while maintaining
order; the following logic should be applied when inserting
a new node:
if value < valueof(parent)
follow lChild
else
follow rChild
@param value, value to insert
@return NA