Practice Standard Algorithms Flashcards
1
Q
Standard Binary Search implementation returning a boolean.
A
- recursive or iterative
- pointers
- mid (length - start) / 2
2
Q
Binary search tree construction and methods
Add, contains, delete
A
Code
3
Q
Traverse BST DEPTH first.
Post-, in - , pre - order
A
Code
4
Q
Traverse BST breadth first.
A
Code