510. Inorder Successor in BST II - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

You are given a node in a binary search tree (BST) where each node has pointers not only to its left and right children but also to its parent. The task is to find the inorder successor of that node. The inorder successor is the node with the smallest key greater than the key of the given node when the BST is traversed in inorder (left, root, right).

Example 1

Consider the BST:

        20
       /  \
      10   30
     /  \
    5    15
  • Input: Node with value 10
  • Output: Node with value 15
  • Explanation: In the inorder traversal of the tree, the sequence is [5, 10, 15, 20, 30]. The node after 10 is 15.

Example 2

Consider the same BST:

        20
       /  \
      10   30
     /  \
    5    15
  • Input: Node with value 15
  • Output: Node with value 20
  • Explanation: The inorder sequence is [5, 10, 15, 20, 30]. The node after 15 is 20.

Example 3

Consider the same BST:

        20
       /  \
      10   30
     /  \
    5    15
  • Input: Node with value 30
  • Output: null
  • Explanation: The inorder sequence is [5, 10, 15, 20, 30]. Since 30 is the last node in this order, it does not have an inorder successor.

Constraints

  • Each node contains an integer value, and pointers to its left child, right child, and parent.
  • The given node is guaranteed to be a valid node in the BST.
  • If there is no inorder successor, return null.

Hints

  1. Right Subtree Case:
    If the given node has a right child, the inorder successor is the leftmost node in the right subtree.
  2. No Right Subtree Case:
    If the given node does not have a right child, move up the tree using the parent pointer until you find a node that is the left child of its parent. The parent of that node is the inorder successor.

Approaches Overview

Approach 1: Using the Right Subtree

  • When to Use:
    If the node has a right child, this approach is straightforward.
  • How it Works:
    • Move to the right child.
    • Then traverse left down the subtree until no more left children are found.
    • The last node reached is the inorder successor.
  • Complexity:
    Time complexity is O(h), where h is the height of the tree.

Approach 2: Moving Up Through Parent Pointers

  • When to Use:
    When the node does not have a right child.
  • How it Works:
    • Start at the given node and move upward using the parent pointer.
    • Continue until you find a node that is the left child of its parent.
    • The parent of this node is the inorder successor.
    • If you reach the root without finding such a condition, the node is the rightmost node, so there is no inorder successor.
  • Complexity:
    Again, the worst-case time complexity is O(h).

Detailed Step-by-Step Explanation

  1. Check for Right Child:

    • If the node has a right child, go to that right child and then keep moving to its left child until you cannot go any further. This is because in a BST, the leftmost node in a subtree will have the smallest value in that subtree.
  2. Move Up if No Right Child:

    • If the node does not have a right child, you must look upward.
    • Traverse up using the parent pointer until you find a node that is a left child of its parent. This indicates that the parent node's value is the next larger value.
    • If you cannot find such a node, it means the given node is the rightmost node in the BST, so return null.
  3. Edge Cases:

    • If the given node is null, simply return null.
    • If the given node is the maximum node in the BST (i.e., no successor exists), return null.

Python Implementation

Python3
Python3

. . . .

Java Implementation

Java
Java

. . . .

Complexity Analysis

  • Time Complexity:
    In the worst-case scenario, the algorithm traverses the height of the tree. Therefore, the time complexity is O(h), where h is the height of the BST.

  • Space Complexity:
    The space complexity is O(1) if we do not consider the recursion stack in the case of iterative implementation. In a recursive implementation, it would be O(h) due to the recursion call stack.

Step-by-Step Walkthrough and Visual Example

  1. Node with Right Child:
    • If the node has a right subtree, simply go to that right child and then repeatedly move to the left child until reaching the leftmost node. This leftmost node is the inorder successor.
  2. Node without Right Child:
    • Start from the node and traverse upward using the parent pointer.
    • Continue this traversal until you find a node that is a left child of its parent.
    • The parent of this node is the inorder successor.
    • If no such parent exists, then the given node is the rightmost node in the BST, and its inorder successor is null.

Common Mistakes

  • Ignoring the Right Subtree:
    Not checking if the node has a right child can lead to missing the simplest case.

  • Incorrect Parent Traversal:
    Failing to properly check the relationship (i.e., whether the current node is a right child) when moving upward may result in returning the wrong node.

  • Null Checks:
    Not handling null cases (e.g., when the node is null or when no successor exists) can lead to errors.

Alternative Variations

  • Without Parent Pointer:
    If nodes did not have a parent pointer, you would have to traverse the tree from the root to find the inorder successor, which would require additional logic.

  • Finding Inorder Predecessor:
    A similar approach can be used to find the inorder predecessor (the node with the largest key smaller than the given node).

TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
What is the example of low level design?
Does Tesla take a system design interview?
Applying heuristic-based pruning in complex search problems
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;