94. Binary Tree Inorder Traversal 二元樹中序遍歷
前中後序遍歷,參考:https://www.jianshu.com/p/456af5480cee
使用堆疊的方式做二元樹遍歷
❀ Origin
Problem
Given a binary tree, return the inorder traversal of its nodes’ values.
Example
1 | Input: [1,null,2,3] |
Follow up
Recursive solution is trivial, could you do it iteratively?
❀ 翻譯
問題
給定一個二元樹, 回傳其中序遍歷的節點的值.
後續
遞迴的解法並沒有什麼, 你能用迭代帶來處理嗎?
❀ Solution
JavaScript
1 | /** |
JavaScript II
1 | /** |