You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(cpp): rename 'BinaryTree' to 'BinarySearchTree'
The 'Node *insert(Node *, int)' method makes the tree a Binary Search Tree, since it enforces these two properties:
- Each node is greater than every node in its left subtree
- Each node is less than every node in its right subtree
0 commit comments