You are currently browsing the tag archive for the ‘Binary tree’ tag.
Common Binary tree operations :-
- Determine the height
- Determine the number of nodes
- Make a copy
- Determine if two binary trees are identical
- Display the binary tree
- Delete a tree
This is program on Binary Tree :
A Binary Tree differs from the normal tree in some aspects.
BINARY TREE :-A finite(possibly empty)collection of elements.A non-empty binary tree has a root and the remainig elements if any,are partitioned into another two binary trees which are called as left and rigth subtrees of binary tree.A binary tree may have node degree upto 2 only so each node can have atmost 2 children.

