With respect to the following tree:
What is the correct inorder traversal?
- U S T X C P Y R B A I G J F N H V T E D L
- U S T X C P Y R B A D E I G J F N H V T L
What is the correct postorder traversal?
- U T S X P R Y C B D I J G N V T H F E L A
- U T S X P R Y C B I J G N V T H F E D L A
I evaluated both pairs. But some are saying 1-1 and 2-1 are correct, while others say 1-2 and 2-2 are correct. I'm confused. Which ones are actually correct?