首页 > 代码库 > [leetcode]Binary Tree Postorder Traversal
[leetcode]Binary Tree Postorder Traversal
Binary Tree Postorder Traversal
Given a binary tree, return the postorder traversal of its nodes‘ values.
For example:
Given binary tree{1,#,2,3}
,1 2 / 3
return
[3,2,1]
.Note: Recursive solution is trivial, could you do it iteratively?
算法思路:
最简单的后序遍历。不解释了。
代码如下:
1 public class Solution { 2 List<Integer> res = new ArrayList<Integer>(); 3 public List<Integer> postorderTraversal(TreeNode root) { 4 if(root == null) return res; 5 if(root.left != null) postorderTraversal(root.left); 6 if(root.right != null) postorderTraversal(root.right); 7 res.add(root.val); 8 return res; 9 }10 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。