94. Binary Tree Inorder Traversal
Given a binary tree, return the inorder traversal of its nodes’ values.
Example:
Input: [1,null,2,3]
1
2
/
3
Output: [1,3,2]
1.recursive solution
1 | /** |
2.iterative solution
1 | /** |
- 本文作者: John Doe
- 本文链接: http://example.com/2019/01/09/algorithm/95. Binary Tree Inorder Traversal/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!