2022-11-28
|~3 min read
|533 words
There are three standard ways to traverse a binary tree when traversing depth first: Inorder (left, root, right) Preorder (root, left, right…
2022-11-28
|~2 min read
|389 words
Yesterday, I wrote about determining whether a Binary Search Tree was valid using a depth-first approach. I made an off-hand comment about…