#510
Medium Algorithms Inorder successor in bst ii
Tree Binary Search Tree Binary Tree
61.1% acceptance
Mar 31, 2026
890
44
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:
class Node {
public int val;
public Node left;
public Node right;
public Node parent;
}
Solution
C++
Time O(n)
Space O(1)
/*
// Definition for a Node.
class Node {
public:
int val;
Node* left;
Node* right;
Node* parent;
};
*/
class Solution {
public:
Node* inorderSuccessor(Node* node) {
if (node->right) {
node = node->right;
while (node->left) node = node->left;
return node;
}
while (node->parent && node == node->parent->right) {
node = node->parent;
}
return node->parent;
}
};