题目:原题链接(简单)
解法时间复杂度空间复杂度执行用时Ans 1 (Python) O ( l o g N ) O(logN) O(logN) O ( l o g N ) O(logN) O(logN)84ms (96.08%)Ans 2 (Python)Ans 3 (Python)LeetCode的Python执行用时随缘,只要时间复杂度没有明显差异,执行用时一般都在同一个量级,仅作参考意义。
解法一:
def searchBST(self, root: TreeNode, val: int) -> TreeNode: def helper(node): if not node: return None if val == node.val: return node elif val < node.val: return helper(node.left) else: return helper(node.right) return helper(root)