Depth First Traversal

As the name suggests, depth-first traversal involves traversing a tree from top to bottom. (Reading time: 2 minutes)

We'll cover the following...

In depth-first traversal, we first traverse through the left subtrees, and then the right subtrees! The values within the ...