[LeetCode] 701. Insert into a Binary Search Tree_Medium_tag: Binary Search Tree

旧巷老猫 提交于 2019-12-04 16:59:40

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这个题目利用recursive的方式,去判断是大于root.val 还是小于,因为题目说了不会有重复的,所以类似于在BST中找到node,去分别recursive得到left 和right child,最后返回root。Code
class TreeNode:
    def __init__(self, val):
        self.val = val
        self.left = None
        self.right = None

class Solution:
    def insertBST(self, root, val):
        if not root: return TreeNode(val)
        if root.val < val:
            root.right = self.insertBST(root.right, val)
        else:
            root.left = self.insertBST(root.left, val)
        return root

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!