Binary Tree (BT)
A Binary Tree is node based tree data structure.
Its conceptually a tree structure with nodes and edges where
edges connect two nodes.
There are different types of binary trees. We will cover
them in detail in another article.
Introduction
Binary Tree Programs
- Check if a binary tree is a min heap
- Create a mirror of binary tree - Iterative approach
- Check if a binary tree is symmetric or mirror of itself
- Check if a binary tree is symmetric or mirror of itself - iterative
- Find the height of binary tree - Recursive approach
- Create a mirror of binary tree - Recursive approach
- Find the height of binary tree - Iterative approach
- Print the diameter of a binary tree
- Check if two binary tree are identical
- Print right view of a binary tree
- Print left view of a binary tree