Python Advanced Data Structure
Python Advanced Data Structure
N nodes
Height: N – 1
…
Fundamentals of Python: From First Programs Through Data Structures 38
Searching a Binary Search Tree
• find returns the first matching item if the target
item is in the tree; otherwise, it returns None
– We can use a recursive strategy