[LeetCode] 145. Binary Tree Postorder Traversal
1 min read
🧠 Remember: “Postorder → go left, go right, write it down LAST.”
The problem — 20 seconds
root = [1,null,2,3] → [3,2,1].
Record the left subtree, then the right subtree, then the node.
1
\
2
/
3
left empty · right subtree first
visit 3 → [3] · back up · visit 2 → [3, 2]
visit 1 → [3, 2, 1] · done — root lands last
That trace is the whole algorithm.
Your first instinct
Recursion writes itself — the skeleton is three lines, and the follow-up (“could you do it iteratively?”) is the actual interview question:
dfs(node): dfs(left) → dfs(right) → visit(node)
Recursion borrows the call stack; iteration simulates it by hand.
The turning point
Preorder, inorder, and postorder share one skeleton. The only difference is the position of visit: last here, first for preorder, in the middle for inorder. Memorize positions, not three algorithms.
Why postorder earns its own post: it is the cleanup order — delete children before the parent, and evaluate expression trees bottom-up, operands before operators.
Watch it work
Press Play. On the shared tree the badges land 1st → 5th as [4, 5, 2, 3, 1]: both children before every parent, root dead last.
Interactive visual · Postorder walk
Children first, node last
Postorder records each node AFTER its children: 4 and 5 before 2, then 3, and 1 dead last. Think deleting a tree bottom-up.
output
def traverse(node):traverse(node.left) # left subtreevisit(node) → output # record valuetraverse(node.right) # right subtreeQuick check — make it stick
When is the node itself recorded?
🧠 Memory hook: “PRE = node first · IN = node in the middle · POST = node last.”
The code, for real
Recursive primary — the recording line sits last:
from typing import Optional
class TreeNode:
def __init__(self, val: int = 0, left: Optional["TreeNode"] = None, right: Optional["TreeNode"] = None):
self.val, self.left, self.right = val, left, right
class Solution:
def postorderTraversal(self, root: Optional[TreeNode]) -> list[int]:
out: list[int] = []
def dfs(node: Optional[TreeNode]) -> None:
if not node:
return
dfs(node.left)
dfs(node.right)
out.append(node.val) # visit LAST
dfs(root)
return out
Iterative secondary — visit root-right-left, then reverse for left-right-root:
from typing import Optional
class Solution:
def postorderTraversal(self, root: Optional[TreeNode]) -> list[int]:
if not root:
return []
out: list[int] = []
stack: list[TreeNode] = [root]
while stack:
node = stack.pop()
out.append(node.val)
if node.left:
stack.append(node.left)
if node.right:
stack.append(node.right)
return out[::-1]
Why it works
Invariant: every node enters out exactly once, after both of its subtrees, so out is always the postorder prefix recorded so far.
n = 1,000 → ~1,000 visits · stack depth = tree height
Time O(n), space O(h).
🧠 Remember
Postorder → “node LAST.”
visitafter both children — children-before-parent is the whole use case.
🔁 Try this: recite root = [1,null,2,3] from memory, then compare with the other two.
Related: Binary Tree Preorder Traversal · Binary Tree Inorder Traversal