Lintcode 85. 在二叉查找树中插入节点

--------------------------------------------

 

AC代码:

/**
 * 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 the binary search tree.
     * @param node: insert this node into the binary search tree
     * @return: The root of the new binary search tree.
     */
    public TreeNode insertNode(TreeNode root, TreeNode node) {
        if(root==null){
            return node;
        }else if(root.val<=node.val){
            root.right=insertNode(root.right,node);
        }else{
            root.left=insertNode(root.left,node);
        }
        return root;
    }
}

 

 

题目来源: http://www.lintcode.com/zh-cn/problem/insert-node-in-a-binary-search-tree/

 

相关文章:

  • 2022-02-03
  • 2021-07-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
  • 2022-02-16
  • 2021-11-18
猜你喜欢
  • 2021-05-19
  • 2021-06-20
  • 2021-08-19
  • 2022-02-21
  • 2022-12-23
  • 2021-11-18
  • 2021-06-02
相关资源
相似解决方案