BFS TraversalBinary TreesBFS Tree TraversalBFS Tree Traversal BFS is a tree traversal method. We search the graph level by level. The concept…Omer GoldbergDecember 21, 2020 12 min
DFS Tree TraversalBinary TreesDFS Tree TraversalDFS Tree Traversal DFS stands for depth first search. So in this tree traversal method we go as deep…Omer GoldbergDecember 21, 2020 11 min
Delete Node From BSTBinary Search TreesDelete 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 BSTBinary Search TreesFind 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 BSTBinary Search TreesFind 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 BSTBinary Search TreesFind 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