Binary Search Tree (BST) Contains Insertion Finding The Min Finding The Max Removal Preorder Traversal Post Order Traversal In Order Traversal
<aside> 💡 A Binary Search Tree is a tree based data structure where the left child node is smaller than the parent node, but the parent node is smaller than the right child node.
</aside>

<aside> 💡 To determine if a given tree is a BST:
Binary Search Tree Requirements
</aside>


struct BinaryNode {
object element;
BinaryNode* Left;
BinaryNode* Right;
}
<aside>
💡 Let’s find 80 in the following Binary Search Tree:
</aside>
