thafnhlong / hackerrank-storage

0 stars 0 forks source link

https://www.hackerrank.com/challenges/tree-postorder-traversal #13

Open thafnhlong opened 2 years ago

thafnhlong commented 2 years ago

Duyệt sau PostOrder(LRN)

travel(root->left); travel(root->right); cout << root;