友情支持

如果您觉得这个笔记对您有所帮助,看在D瓜哥码这么多字的辛苦上,请友情支持一下,D瓜哥感激不尽,😜

支付宝

微信

有些打赏的朋友希望可以加个好友,欢迎关注D 瓜哥的微信公众号,这样就可以通过公众号的回复直接给我发信息。

wx jikerizhi

公众号的微信号是: jikerizhi因为众所周知的原因,有时图片加载不出来。 如果图片加载不出来可以直接通过搜索微信号来查找我的公众号。

701. Insert into a Binary Search Tree

Given the root node of a binary search tree (BST) and a value to be inserted into the tree, insert the value into the BST. Return the root node of the BST after the insertion. It is guaranteed that the new value does not exist in the original BST.

Note that there may exist multiple valid ways for the insertion, as long as the tree remains a BST after insertion. You can return any of them.

For example,

Given the tree:
        4
       / \
      2   7
     / \
    1   3
And the value to insert: 5

You can return this binary search tree:

         4
       /   \
      2     7
     / \   /
    1   3 5

This tree is also valid:

         5
       /   \
      2     7
     / \
    1   3
         \
          4

思路分析

二叉搜索树的特性:左中右是有序的。如果插入的值比当前节点小,那么就在左子树上找,如果最节点为空,直接插入;否则就不断 cur = cur.left。如果插入的值更大,亦是如此。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
 * @author D瓜哥 · https://www.diguage.com
 * @since 2024-06-26 19:33:15
 */
public TreeNode insertIntoBST(TreeNode root, int val) {
  if (root == null) {
    return new TreeNode(val);
  }
  TreeNode curr = root;
  while (curr != null) {
    if (val < curr.val) {
      if (curr.left == null) {
        curr.left = new TreeNode(val);
        break;
      } else {
        curr = curr.left;
      }
    } else {
      if (curr.right == null) {
        curr.right = new TreeNode(val);
        break;
      } else {
        curr = curr.right;
      }
    }
  }
  return root;
}