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

[Leetcode] Binary Tree Inorder Traversal

时间:2015-01-16 20:42:01      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

Given a binary tree, return the inorder traversal of its nodes‘ values.

For example:
Given binary tree {1,#,2,3},

   1
         2
    /
   3

 

return [1,3,2].

Note: Recursive solution is trivial, could you do it iteratively?

 

[Thoughts]

先根遍历的迭代算法比较简单,但是中根遍历的迭代算法稍微难一点。同样借助于栈,但不同于先根遍历的中规中矩,中根遍历需要先把当前结点的所有左结点放入栈中,然后从栈中弹出前一个左结点(即当前的根结点),把值放入队列,然后指向右结点,重复直至栈空。

[Code]

/**
 * Definition for binary tree
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public List<Integer> inorderTraversal(TreeNode root) {
        ArrayList<Integer> result = new ArrayList<Integer>();
        if(root == null){
            return result;
        }
        
        Stack<TreeNode> stack = new Stack<TreeNode>();
        TreeNode cur = root;
        while(!stack.isEmpty() || cur != null){
            while(cur != null){// put all the left node into stack
                stack.push(cur);
                cur = cur.left;
            }
            cur = stack.pop();
            result.add(cur.val);
            cur = cur.right;
        }
        return result;
    }
}

 

[Leetcode] Binary Tree Inorder Traversal

标签:

原文地址:http://www.cnblogs.com/andrew-chen/p/4229552.html

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