摘要: 给定一个二叉树,返回它的 后序 遍历。 示例: 输入: [1,null,2,3] 1 \ 2 / 3 输出: [3,2,1] 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/binary-tree-postorder-traversal 著作权 阅读全文
posted @ 2020-09-29 18:12 Maple_XL 阅读(118) 评论(0) 推荐(0) 编辑