Inorder TraversalBinary TreesInorder TraversalProblem 🤔 Inorder traversals are super useful! In a binary search tree an inorder traversal lets us…Omer GoldbergDecember 05, 2020 7 min
Postorder TraversalBinary TreesPostorder TraversalProblem 🤔 The great thing about all of these traversals are that they are all relative to the root…Assaf ElovicDecember 05, 2020 8 min
Preorder TraversalBinary TreesPreorder TraversalProblem 🤔 The great thing about all of these traversals are that they are all relative to the root…Assaf ElovicDecember 05, 2020 9 min
Lowest Common Ancestor in BSTBinary Search TreesLowest Common Ancestor in BSTProblem 🤔 Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given…Omer GoldbergFebruary 12, 2020 20 min
Is Subtree of Another TreeRecursionSubtree of Another TreeProblem 🤔 Given two non-empty binary trees s and t , check whether tree t has exactly the…Omer GoldbergFebruary 12, 2020 22 min
Lowest Common Ancestor in Binary TreeBinary TreesLowest Common Ancestor in Binary TreeProblem 🤔 Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree…Omer GoldbergFebruary 12, 2020 17 min