In-Order Tree Traversal Conversion

In-order traversal visits left subtree, then the current node, then the right subtree. During conversion, we're transforming the binary tree into a doubly linked list.
Step 1 of 9