AAnnainexternalbrain.hashnode.dev·Sep 25, 2022 · 4 min readBinary Search Tree InsertionIf you have never done it before, inserting a node into a binary search tree might feel a bit intimidating. After all, you need to make sure that it is still a binary search tree once the node is inserted, right? Well, it turns out that you do not ne...00
AAnnainexternalbrain.hashnode.dev·Sep 22, 2022 · 4 min readFinding Maximum Depth of Binary TreeFrom my experience, getting used to traversing non-linear data structures takes a bit of time. So when you try to get hold of trees, you need something easy to practice and finding maximum depth of binary tree is a great place to start. The problem c...00