码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode——Binary Tree Postorder Traversal

时间:2014-06-22 20:58:01      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:leetcode   二叉树   

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?

中文:二叉树的后续遍历(左-右-根)。能用非递归吗?

递归:

public class BinaryTreePostorderTraversal {
    public List<Integer> postorderTraversal(TreeNode root) {
    	List<Integer> list = new ArrayList<Integer>();
        if(root == null)
        	return list;
        list.addAll(postorderTraversal(root.left));
        list.addAll(postorderTraversal(root.right));
        list.add(root.val);
        return list;
    }
    // Definition for binary tree
    public class TreeNode {
        int val;
        TreeNode left;
        TreeNode right;
        TreeNode(int x) { val = x; }
    }
}

非递归:

    public List<Integer> postorderTraversal(TreeNode root){
    	List<Integer> list = new ArrayList<Integer>();
    	if(root == null)
    		return list;
    	Stack<TreeNode> stack = new Stack<TreeNode>();
    	stack.push(root);//最后访问
    	while(!stack.isEmpty()){
    		TreeNode current = stack.peek();
    		//根节点无子节点
    		if(current.left == null && current.right == null){
    			list.add(current.val);
    			stack.pop();
    		}
    		if(current.left != null){
    			stack.push(current.left);
    			current.left = null;
    			continue;
    		}
    		if(current.right != null){
    			stack.push(current.right);
    			current.right = null;
    			continue;
    		}
    	}
    	return list;
    }


LeetCode——Binary Tree Postorder Traversal,布布扣,bubuko.com

LeetCode——Binary Tree Postorder Traversal

标签:leetcode   二叉树   

原文地址:http://blog.csdn.net/laozhaokun/article/details/32344039

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!