zoukankan      html  css  js  c++  java
  • [LintCode] Insert Node in a Binary Search Tree

    Given a binary search tree and a new tree node, insert the node into the tree. You should keep the tree still be a valid binary search tree.

    You can assume there is no duplicate values in this tree + node.

    Example

    Given binary search tree as follow, after Insert node 6, the tree should be:

      2             2
     /            / 
    1   4   -->   1   4
       /             /  
      3             3   6
    
    Challenge 

    Can you do it without recursion?

    Solution 1. Recursion

    Recursively find the correct subtree of the current processing node to do the insertion. If current node's value is bigger than the insert node, go to its left subtree; otherwise go to its right subtree. 

    Each recursive call returns the new root node after the insertion node is inserted.

     1 /**
     2  * Definition of TreeNode:
     3  * public class TreeNode {
     4  *     public int val;
     5  *     public TreeNode left, right;
     6  *     public TreeNode(int val) {
     7  *         this.val = val;
     8  *         this.left = this.right = null;
     9  *     }
    10  * }
    11  */
    12 public class Solution {
    13     public TreeNode insertNode(TreeNode root, TreeNode node) {
    14         if(root == null){
    15             return node;
    16         }
    17         if(node.val < root.val){
    18             root.left = insertNode(root.left, node);
    19         }
    20         else{
    21             root.right = insertNode(root.right, node);
    22         }
    23         return root;
    24     }
    25 }

    Solution 2. Iterative approach 

    The core idea of inserting a node in BST is to find the "right" place to insert.  In solution 1, this place is found by recursively calling the insertNode method. 

    When the current node is null, it means that the insertion place is just found, return the insertion node as the root node of this null subtree.  Each recursive call

    returns the new node after inserting node to the subtree. 

    Alternatively, we can found this insertion place iteratively.  The only difference is that we have to do the info booking by ourselves now.   Inserting a node essentially

    means we need to set a parent node's left or right node to the insertion node. As a result, we need to save the parent node of the current processing node. When 

    the current processing node is null, we found the "right" insertion place. Then we need to check if the node should be inserted to its parent's left or right. 

     1 public class Solution {
     2     public TreeNode insertNode(TreeNode root, TreeNode node) {
     3         if(root == null){
     4             return node;
     5         }    
     6         TreeNode currNode = root;
     7         TreeNode parent = null;
     8         while(currNode != null){
     9             parent = currNode;
    10             if(node.val < currNode.val){
    11                 currNode = currNode.left;
    12             }
    13             else{
    14                 currNode = currNode.right;
    15             }
    16         }
    17         if(node.val < parent.val){
    18             parent.left = node;
    19         }
    20         else{
    21             parent.right = node;
    22         }
    23         return root;
    24     }
    25 }

    Related Problems 

    Remove Node in Binary Search Tree

  • 相关阅读:
    .net实现支付宝在线支付
    彻头彻尾理解单例模式与多线程
    Linq中的Select与Select many
    MVC中子页面如何引用模板页中的jquery脚本
    浅谈MemCahe
    左连接,右连接,内连接(left join ,right join,inner join)
    协变与逆变
    子类对父类中的属性和字段的改写
    里氏转换
    MVC基础篇—控制器与视图数据的传递
  • 原文地址:https://www.cnblogs.com/lz87/p/7169389.html
Copyright © 2011-2022 走看看