Full vs Complete Binary Tree

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 273:- Full vs Complete Binary Tree

A full binary tree and a complete binary tree are two different types of binary trees, each with its own specific characteristics:

  1. Full Binary Tree:
    • In a full binary tree, every node has either zero children (a leaf node) or exactly two children.
    • In other words, every node in a full binary tree has either two children or no children at all.
    • There are no nodes with only one child in a full binary tree.
    • Full binary trees are also called proper binary trees.
    • Full binary trees have a special property that the number of leaf nodes is always one more than the number of internal nodes.
  2. Complete Binary Tree:
    • In a complete binary tree, all levels of the tree are filled except possibly the last level, and the last level is filled from left to right.
    • In other words, all nodes at levels except the last level are completely filled, and the nodes at the last level are filled from left to right.
    • If there are any gaps in the last level of a complete binary tree, they will only occur at the rightmost positions.
    • Complete binary trees are not necessarily full binary trees, as some nodes at the last level may have only one child.

Here's an example to illustrate the difference:

sqlCopy code

Full Binary Tree:        1       / \      2   3     / \      4   5 Complete Binary Tree:        1       / \      2   3     / \   \    4   5   6

In the full binary tree, every node either has two children or no children, and there are no nodes with only one child. In the complete binary tree, all levels except the last level are completely filled, and nodes are filled from left to right on the last level.

It's important to note that the terms "full" and "complete" are specific to binary trees and have different definitions. A full binary tree is a specific type of binary tree with no nodes having only one child, while a complete binary tree is a broader concept that refers to the completeness of levels in the tree.

14. Trees

0 Comments

Start the conversation!

Be the first to share your thoughts

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support