0510. Inorder Successor in BST II
https://leetcode.com/problems/inorder-successor-in-bst-ii
Description
Given a node
in a binary search tree, return the in-order successor of that node in the BST. If that node has no in-order successor, return null
.
The successor of a node
is the node with the smallest key greater than node.val
.
You will have direct access to the node but not to the root of the tree. Each node will have a reference to its parent node. Below is the definition for Node
:
Example 1:
Example 2:
Example 3:
Example 4:
Example 5:
Constraints:
The number of nodes in the tree is in the range
[1, 104]
.-105 <= Node.val <= 105
All Nodes will have unique values.
Follow up: Could you solve it without looking up any of the node's values?
ac
Last updated