Difficult:Easy
題目
Given the root of a binary tree, return the postorder traversal of its nodes’ values.
翻譯
給定二叉樹的根,返回其節點值的後序遍歷。
範例
![example](../image/leetcode/leetcode144.jpg “example)
Example 1:
1 | Input: root = [1,null,2,3] |
Example 2:
1 | Input: root = [] |
Example 3:
1 | Input: root = [1] |
解題思路
- 已知後序遍布左->右->中的方式
- 利用遞迴求解
- 依序由左->右->中的條件找出樹的值
程式碼
1 | var preorderTraversal = function(root) { |