2/19 Flashcards
(3 cards)
1
Q
BST
A
Binary Search Tree: Binary tree in which key of internal node is greater than the keys of its left subtree and less than or equal to the keys of its right subtree.
2
Q
Divide and Conquer
A
Divide problem into 2 or more smaller instances. Solve smaller instances. Combine solutions.
3
Q
A