145. Binary Tree Postorder Traversal
问题
Given the root of a binary tree, return the postorder traversal of its nodes’ values.
后序遍历。
先递归左子节点。
然后递归右子节点。
最后将当前节点加入数组。
1 | /** |
145. Binary Tree Postorder Traversal
https://xuanhe95.github.io/2022/04/12/145-Binary-Tree-Postorder-Traversal/