Guest User

Untitled

a guest
Oct 21st, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. 1) Check if the current node is empty or null.
  2. 2) Traverse the left subtree by recursively calling the in-order function.
  3. 3) Display the data part of the root (or current node).
  4. 4) Traverse the right subtree by recursively calling the in-order function.
Add Comment
Please, Sign In to add comment