Binary Tree is very famous data structure. Left of the parent node has smaller than parent's value and right is bigger. In this code I'll give a simple demonstration of binary tree (implemented in C++ but knowing C is enough to get the idea). Although code is self explanatory I'll give important highlights. #include <iostream> … Continue reading Binary Tree