Lintcode 二叉树中序遍历

二叉树中序遍历

给出一棵二叉树,返回其中序遍历

样例

给出二叉树 {1,#,2,3},

   1
    \
     2
    /
   3

返回 [1,3,2].

二叉树中序遍历:左子树->根节点->右子树。下图二叉树中序遍历结果为:debgfac。


通过递归方式实现二叉树中序遍历的代码如下:

/**
 * Definition of TreeNode:
 * public class TreeNode {
 *     public int val;
 *     public TreeNode left, right;
 *     public TreeNode(int val) {
 *         this.val = val;
 *         this.left = this.right = null;
 *     }
 * }
 */
public class Solution {
    /**
     * @param root: The root of binary tree.
     * @return: Inorder in ArrayList which contains node values.
     */
    ArrayList<Integer> list = new ArrayList<Integer>();
    public ArrayList<Integer> inorderTraversal(TreeNode root) {
        // write your code here
        inorder(root);
        return list;
        
    }
        private void inorder(TreeNode root){
            if(root == null) return;
            inorder(root.left);
            list.add(root.val);
            inorder(root.right);
        }
    
}

通过非递归方式实现二叉树中序遍历的代码如下:

/**
 * Definition of TreeNode:
 * public class TreeNode {
 *     public int val;
 *     public TreeNode left, right;
 *     public TreeNode(int val) {
 *         this.val = val;
 *         this.left = this.right = null;
 *     }
 * }
 */
public class Solution {
    /**
     * @param root: The root of binary tree.
     * @return: Inorder in ArrayList which contains node values.
     */
    public ArrayList<Integer> inorderTraversal(TreeNode root) {
        // write your code here
        Stack<TreeNode> stack = new Stack<TreeNode>();
        ArrayList<Integer> list = new ArrayList<Integer>();
        while(root!=null||stack.size()>0){
            while(root!=null){
                stack.push(root);
                root = root.left;
            }
            if(stack.size()>0){
                root = stack.pop();
                list.add(root.val);
                root  = root.right;
            }
            
        }
        return list;
    }
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章