Please answer all questions and read carefully
This tutorial consists with 3 questions (Tree Traversal): Inorder, Postorder and Preorder Traversal ⭐
Based from the figure above, print out all the keys/elements in Inorder Tree Traversal (hint: left->root->right)
Based from the figure above, print out all the keys/elements in Postorder Tree Traversal (hint: left->right->root)
Based from the figure above, print out all the keys/elements in Preorder Tree Traversal (hint: root->left->right)