...

/

Solution Review: Find kth maximum value in Binary Search Tree

Solution Review: Find kth maximum value in Binary Search Tree

Let’s solve the Find kth Maximum Value in Binary Search Tree problem.

Statement

Given the root node of a binary search tree and an integer value k, return the kthk^{th} maximum value in the tree.

Constraints:

  • The number of nodes in the tree is n.

  • 11 \leq k \leq n ...