BST Operations: Playground (Part 4)
Implement generic BST algorithms in the C language.
We'll cover the following...
Before we begin
Make sure to copy the previously implemented functions (getSuccessor
, getPredecessor
, rangeCount
, rangeSearch
) from the previous playground. The goal is to build a complete implementation across the playground lessons. Having all the functions together will also help you test them together and find any potential wrong interactions.
Implementing the operations
You will implement the pseudocode from the previous lesson in this playground lesson. ...