Reading time: 25 minutes | Coding time: 40 minutes
In this article, we have explored how to implement Binary Tree Data Structure in C++ including all different operations like traversing, inserting and deleting. We have used Object Oriented Programming (OOP) concepts.
What is a
Binary tree? (general form)
A Binary tree is a heirarchichal data structure in which every node has 2 children, also known as left child and right child, as each node has 2 children hence the name "Binary".
Root node is...
Published on June 09, 2020 15:54