Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 237 Bytes

INORDER_TRAVERSAL.md

File metadata and controls

5 lines (3 loc) · 237 Bytes

Inorder Traversal

Write recursive method inorderTraversal to traverse the tree and print the node values.

The inorder traversal does not process the value in a node until the values in that node’s left sub- tree are processed.