Reputation: 4276
I have heard various kinds of Binary Tree
. (i.e. Full, Complete ,Perfect ,Balanced)
My assumption:
1) Full binary tree : Every nodes except the leaves will have 2 children
2) Complete binary tree: May be same as Full binary tree
3) Perfect binary tree: I don't have any idea
4) Balanced binary tree: For each node , number of nodes in left sub-tree is roughly equal to the number of nodes in right sub-tree.
What are the correct definitions for these varius kinds of binary trees?
Upvotes: 0
Views: 277
Reputation: 263
Those are types of binary trees:
Upvotes: 1