Trimmed working portion to slowly implement instead

This commit is contained in:
2023-03-05 23:23:34 -06:00
parent 8370fa19f1
commit cbdc502193
2 changed files with 134 additions and 134 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ namespace tree_implementation
virtual void PrintPathToRoot(std::string key) = 0;
private:
TreeNode* Insert(std::unique_ptr<TreeNode> root, std::unique_ptr<TreeNode> newNode);
TreeNode* Search(std::unique_ptr<TreeNode> viewedNode, std::string wordToFind);
TreeNode* Search(std::unique_ptr<TreeNode>* viewedNode, std::string wordToFind);
};
// Binary Search Tree operations