leetcode, LC6: binary-tree-postorder-traversal

1 题目描述 求给定的二叉树的后序遍历。 例如: 给定的二叉树为{1,#,2,3},node 1 \ 2 / 3web 返回[3,2,1]. 备注;用递归来解这道题太没有新意了,能够给出迭代的解法么?svg Given a binary tree, return the postorder traversal of its nodes’ values. For example: Given bin
相关文章
相关标签/搜索