postorder-uses-reverse-preorder

Status: IN

The n-ary postorder traversal computes a modified preorder (root-right-left via stack) and reverses the result, rather than using recursion or visited-node tracking.

Source: entries/2026/06/06/n-ary-tree-postorder-traversal-solution.md

JSON