码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode 701. Insert into a Binary Search Tree

时间:2019-04-04 09:40:09      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:span   bsp   leetcode   func   tool   col   sel   val   bin   

import functools

@functools.lru_cache()
class Solution(object):
    
    def insertIntoBST(self, root, val):
        """
        :type root: TreeNode
        :type val: int
        :rtype: TreeNode
        """
        if not root:
            return
        if val > root.val:
            if not root.right:
                root.right = TreeNode(val)
            else:
                self.insertIntoBST(root.right, val)
        else:
            if not root.left:
                root.left = TreeNode(val)
            else:
                self.insertIntoBST(root.left, val)
        return root

 

Leetcode 701. Insert into a Binary Search Tree

标签:span   bsp   leetcode   func   tool   col   sel   val   bin   

原文地址:https://www.cnblogs.com/zywscq/p/10652724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!