Delete Node From BSTDelete Node from Binary Search TreeProblem 🤔 Given a root node reference of a BST and a key, delete the node with the given key in the…Assaf ElovicDecember 05, 2020 14 min
Find Predecessor in BSTFind Predecessor in Binary Search TreeChallenge 🤔 Given a binary search tree and a node in it, find the in-order predecessor of that node…Assaf ElovicDecember 05, 2020 16 min
Find Min && Max in BSTFind Min and Max Elements in Binary Search TreeProblem 🤔 This is a warm up problem for binary search trees. Let's write an algorithm to find the…Omer GoldbergDecember 05, 2020 8 min
Find Second Largest in BSTFind Second Largest in Binary Search TreeProblem 🤔 This is a warm up problem for binary search trees. Let's write an algorithm to find the…Assaf ElovicDecember 05, 2020 13 min
Find Successor in BSTFind Successor in Binary Search TreeChallenge 🤔 Given a binary search tree and a node in it, find the in-order successor of that node…Omer GoldbergDecember 05, 2020 14 min
Is Valid BSTIs Valid Binary Search TreeProblem 🤔 Given the root of a binary tree, determine if it is a valid binary search tree (BST). A…Omer GoldbergDecember 05, 2020 8 min