Skip to main content

10 docs tagged with "Binary Search Tree"

View all tags

Convert BST to Greater Tree

Given the root of a Binary Search Tree (BST), convert it to a Greater Tree such that every key of the original BST is changed to the original key plus the sum of all keys greater than the original key in BST.

Minimum element in BST

This document provides solutions to finding the minimum element in a binary search tree.

Search a Node in BST

This document covers methods to search for a node in a Binary Search Tree (BST) in various programming languages.