zoukankan      html  css  js  c++  java
  • Leetcode-Flatten Binary Tree to Linked List

    Given a binary tree, flatten it to a linked list in-place.

    For example,
    Given

             1
            / 
           2   5
          /    
         3   4   6
    

    The flattened tree should look like:

       1
        
         2
          
           3
            
             4
              
               5
                
                 6
    

    click to show hints.

    Solution:

    /**
     * Definition for binary tree
     * public class TreeNode {
     *     int val;
     *     TreeNode left;
     *     TreeNode right;
     *     TreeNode(int x) { val = x; }
     * }
     */
    public class Solution {
        public void flatten(TreeNode root) {
            if (root==null)
               return;
               
            flattenRecur(root);
            TreeNode end = root;
            TreeNode cur = root.left;
            
            while (cur!=null){
                end.right = cur;
                end.left = null;
                end = cur;
                cur = cur.left;
            }
        }
        
        public TreeNode flattenRecur(TreeNode curNode){
            TreeNode leftEnd = null;
            TreeNode rightEnd = null;
            
            //If curNode is a leaf node, then return
            if (curNode.left==null && curNode.right==null){
                return curNode;
            }
            
            //If curNode is not a leaf node, then visit its left child first.
            if (curNode.left!=null)
                leftEnd = flattenRecur(curNode.left);
            
            //If curNode has right child, then move the right child tree to the end of ths list.
            if (curNode.right!=null)
                rightEnd = flattenRecur(curNode.right);
            
            if (leftEnd==null){
                curNode.left = curNode.right;
                curNode.right = null;
                return rightEnd;
            } else {
                if (rightEnd!=null){
                    leftEnd.left = curNode.right;
                    curNode.right = null;
                    return rightEnd;
                } else
                    return leftEnd;
            }
        }
    }

    For a node, first flatten its left tree, then flaten its right tree. Get the end of the flated list of both of its left and right tree, then put the list of its right child to the end of the list of its left child. We then flaten the tree with current node (root). We return the end of the flatted list to the upper level.

    NOTE: We need to be consider about the situations that the left or right child tree is NULL.

  • 相关阅读:
    点击复制的代码
    色彩浅谈——同色系的变化
    网页设计中色彩的运用
    网页设计中透明效果的使用技巧
    基于栅格的网站设计
    页面之门——登录页的设计分析
    错误变惊喜,10个有趣的404页面设计(转)
    jQuery load()方法用法集锦!
    RPM命令用法
    如何使iframe透明
  • 原文地址:https://www.cnblogs.com/lishiblog/p/4083027.html
Copyright © 2011-2022 走看看