Binary Tree Traversal (Pre-order, In-order, Post-order)

树的三种DFS遍历,是指按照根节点(自己)被访问的顺序

  1. Pre-Order: 先访问根节点,再访问其左右子树。对每一个subtree,同样适用。
  2. In-Order: 先访问其左,再中间,再右子树。对每一个subtree,同样适用。
  3. Post-Order: 先访问其左右子树,再中间。对每一个subtree,同样适用。
image.png

Pre-Order Traversal

三种解法:

  1. Recursive
  2. Iterate 用Stack
  3. Morris Traversal (好处是,Pre-Order和In-Order代码只有很小的改动)
Morris Pre-Order Traversal (LeetCode 144) (Medium)

1...If left child is null, print the current node data. Move to right child.
….Else, Make the right child of the inorder predecessor point to the current node. Two cases arise:
………a) The right child of the inorder predecessor already points to the current node. Set right child to NULL. Move to right child of current node.
………b) The right child is NULL. Set it to current node. Print current node’s data and move to left child of current node.
2...Iterate until current node is not NULL.

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public List<Integer> preorderTraversal(TreeNode root) {
        List<Integer> result = new LinkedList<> ();
        
        TreeNode current = root;
        TreeNode prev    = null;
        
        while (current != null) {
            if (current.left == null) {
                result.add (current.val);
                current = current.right;
            } else { // has left, then find the rightmost of left subtree and connect to current
                
                prev = current.left;
                while (prev.right != null && prev.right != current) {
                    prev = prev.right;
                }
                
                // difference from in-order: print current first 
                if (prev.right == null) {
                    result.add (current.val);
                    
                    prev.right = current;
                    current    = current.left;
                } else {
                    prev.right = null;
                    current    = current.right;
                }   
            }
        }
        
        return result;
    }
}
Morris In-Ordere Traversal (LeetCode 94) (Medium)
  1. Initialize current as root
  2. While current is not NULL
    If current does not have left child
    a) Print current’s data
    b) Go to the right, i.e., current = current->right
    Else
    a) Make current as right child of the rightmost
    node in current's left subtree
    b) Go to this left child, i.e., current = current->left
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public List<Integer> inorderTraversal(TreeNode root) {
        List<Integer> result = new LinkedList<> ();
        
        TreeNode current = root;
        TreeNode prev    = null;
        
        while (current != null) {
            // left first
            if (current.left == null) {
                result.add (current.val);
                current = current.right;
            }
            
            // if there is left, get the rightmost node of left subtree and connect back to current
            else {
                prev = current.left;
                
                // 1. get previous node
                // because the prev.right might connected to current already
                // need to stop in this case
                while (prev.right != null && prev.right != current) { 
                    prev = prev.right;
                }
                
                // 2. if previous hasnt connected to current
                if (prev.right == null) {
                    prev.right = current;
                    current = current.left;
                }
                
                // 3. if previous already connected to current, and while traverse current node
                // has been visited (only after visited current, we can get the prev)
                else if (prev.right == current) {
                    // revert the tree modification
                    prev.right = null;
                    
                    result.add (current.val);
                    current = current.right;
                }
            }
        }
        
        return result;
    }
}

Stack Inorder

class Solution {
    public List<Integer> inorderTraversal(TreeNode root) {
        if (root == null)
            return new ArrayList<Integer> ();
        
        TreeNode currentNode = root;
        Stack<TreeNode> tracker = new Stack<> ();
        List<Integer> result = new ArrayList<> ();
        
        while (currentNode != null || !tracker.isEmpty ()) {
            while (currentNode != null) {
                tracker.push (currentNode);
                currentNode = currentNode.left;
            }
            
            TreeNode current = tracker.pop ();
            result.add (current.val);
            currentNode = current.right;
        }
        
        return result;
    }
}
Post-Order Traversal** (LeetCode 145) (Hard)

Recursive Solution

  1. 用reversed post -order traversal
  2. While root is not EMPTY
    • Pop the first element from the stack and push it into a List
    • reverse_post (root.right)
    • reverse_post (root.left)
  3. reverse (the result List) === > 就是最后post - order的结果

Stack Solution

while not stack.empty()
    root = stack.pop ()
    print (root.val)
    stack.push (root.left)
    stack.push (root.right)

reverse (output)

Note:
实现的时候,不需要最后翻转,可以在用Deque来存储Result List,加入的时候AddFirst.

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public List<Integer> postorderTraversal(TreeNode root) {
        Deque<Integer> result = new LinkedList<> ();
        if (root == null) {
            return new ArrayList (result);
        }
        
        Stack <TreeNode> tracker = new Stack <> ();
        tracker.push (root);
        
        while (!tracker.isEmpty ()) {
            TreeNode node = tracker.pop ();
            result.addFirst (node.val);
            
            if (node.left != null)
                tracker.push (node.left);
            
            if (node.right != null)
                tracker.push (node.right);
        }
        
        return new ArrayList(result);
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,434评论 0 10
  • 春雨冷萧萧, 风密斜织到。 惹起枝凉鸟难栖, 寒气伤花俏。 早卸薄毛衣, ...
    大鱼奶奶阅读 359评论 0 2
  • 倒挂在天上的海 平静不泛一丝涟漪 就像墙上的画 把我深深吸引 那一刻 仿佛羽化的我 两只飞鸟打破了宁静 让画面鲜活...
    柏浅歌阅读 402评论 2 11