Traversals

In this lesson, we'll look at the different ways that a BST can be traversed.

We'll cover the following...

Knowing how to traverse a binary search will help in understanding graph traversals later on. Different types of traversals have different properties and use cases.

Even though you will not need to implement traversals over ...