1. Overview

In computer science, a binary tree is a very popular and widely used data structure. It includes a root, a left child (or a subtree), and a right child (or a subtree). In addition, each node can have at most two child nodes, excluding the leaf nodes. Based on this principle, there can be many variations of it.

In this tutorial, we’ll discuss two popular variations of it: complete and almost complete binary tree.

2. Full Binary Tree

2.1. Definition

In order to understand and differentiate a complete and almost complete binary tree, let’s start our discussion with the definition of a full binary tree.

A full binary tree is also known as 2-tree in which every node other than the leaf nodes has two child nodes. It means all the leaf nodes should be at the same level and all other internal nodes should contain two child nodes each.

2.2. Example

Let’s see some examples:

full

If we look at this tree, we can see that it has two nodes for all the internal nodes except the leaf nodes. In addition to that, all the leaf nodes D, E, F, G are one the same level. Hence, we can say that this is an example of a full binary tree.

Let’s see another tree example:

full2

If we check this tree, the node C is an internal node here and is not a leaf node. Although all the leaf nodes are on the same level, node C has only one child node which doesn’t satisfy the definition. Therefore, this example is not a full binary tree.

3. Complete Binary Tree

3.1. Definition

It follows the definition of a binary tree with some additional conditions. In a complete binary tree, all the levels of a tree are filled entirely except the last level. In the last level, nodes might or might not be filled fully. Also, let’s note that all the nodes should be filled from the left.

Now let’s try to simplify it. A complete binary tree has two child nodes at each level. In the definition, we mentioned all the levels are filled completely except at the last level. Let’s denote the level of a tree by L. If a binary tree is completely filled then at each level we’ll have 2^{L} nodes.

In our case, it is absolutely mandatory to contain 2^{L} nodes at each level except the last level.

Another point we mentioned in the definition is that we fill the nodes from the left. So it is not allowed for a node to have a right child node without having a left child node.

3.2. Example

Now we know the theory, let’s verify the definition with the help of a couple of examples:

1-1

According to the definition, all the levels except the last level should be completely filled. Here, the level \mathsf{2} is the last level. The tree has the root node A at level \mathsf{0} and two nodes B and C at level \mathsf{1}. Till now, it satisfies the definition. Also, let’s note that the nodes are filled from the left.

At level \mathsf{2}, there are \mathsf{2} nodes. But most importantly, the nodes are filled from left. Therefore we can conclude that it is a complete binary tree.

Let’s take another example:

3

First, we’ll check if the given tree has the required number of nodes at each level except the last level which is level \mathsf{2} in this case. We can see that the given tree satisfies this condition.

Next, we’ll check whether the nodes are filled from the left or not. At level \mathsf{2}, the node B has no child nodes. That’s fine according to the definition.

But the problem with this tree is that the node C has two child nodes. Now according to the definition, the nodes need to be filled from the left. So there should be a left child node for the node B which is missing here. Therefore, this example doesn’t follow the definition. Hence, it is not a complete binary tree.

3.3. Application

We can use it in the heap data structure. In computer science, heaps can be of two types: max-heap and min-heap. Algorithms like Heap Sort uses it for sorting.

It is also used in implementing priority queues and external sorting algorithms.

4. Almost Complete Binary Tree

4.1. Definition

An almost complete binary tree is a special kind of binary tree where insertion takes place level by level and from left to right order at each level and the last level is not filled fully always. It also contains 2^{L} nodes at each level except the last level.

The main point here is that if we want to insert any node at the lowest level of the tree, it should be inserted from the left. All the internal nodes should be completely filled.

An almost complete tree is also a complete binary tree.

4.2. Example

Let’s take a couple of examples:

almost1

Notice that this example is the same as the first example of a full binary tree with the missing node G. So here, we deleted the node G at the level \mathsf{2}. At this point, if we observe, it satisfies the definition of a complete binary tree. The question is whether it is an almost complete binary tree?

The answer would be yes. Let’s discuss further. This example satisfies the definition as it has the required number of nodes at level \mathsf{0} and \mathsf{1}. Level \mathsf{2} is the last level here. Therefore, it is not required to have all the 2^{L} nodes at level \mathsf{2}.

Now, what is interesting to analyze is whether the nodes at the lowest level are present from left to the right direction or not. So here the node B has two child nodes D, E and the node C has one child node F but most importantly it is left child node.  Therefore it satisfies the definition of an almost complete binary tree.

Let’s take another example:

almost2-2

Again, notice that this is exactly the same as the first example but here we’ve deleted the node F from the tree.

According to the definition, we should insert the nodes from left to right at each level. Here, in this case, we can see that the node C doesn’t have any left child node. We deleted the left child although the node has a right child node. This is not allowed according to the definition.

Therefore, this is not an almost binary tree nor complete.

5. A High-Level Difference

In this section, we’ll summarize all the points that we discuss so far and we’ll put all the information in a table:

Rendered by QuickLaTeX.com

6. Conclusion

In this tutorial, we’ve discussed the concept of a complete and almost complete binary tree.

We also presented some differences between these two binary trees.

Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.