C++ Program to Implement a Binary Tree

A binary tree is a fundamental data structure in computer science, used extensively to represent hierarchical relationships. It consists of nodes, each having at most two children: a left child and a right child. Binary trees are the basis for more complex structures like binary search trees, heaps, and expression trees. In this article, we will delve into the implementation of a binary tree in C++. We will explore three different methods to traverse the tree: inorder, preorder, and postorder traversal. Each method provides a unique way to visit all nodes in the tree, offering various benefits for different applications.

Prerequisites

To follow along with this article, you should have:

  1. Basic understanding of C++ programming.
  2. Familiarity with pointers and dynamic memory allocation.
  3. Knowledge of fundamental data structures and their operations.

With these prerequisites, you will be able to grasp the concepts and code implementations discussed here.

1. Basic Binary Tree Implementation

1.1 Node Structure and Tree Initialization

Before we implement tree traversals, we need to define the structure of a binary tree node and initialize the tree.

C++
#include <iostream>

struct TreeNode {
    int value;
    TreeNode* left;
    TreeNode* right;

    TreeNode(int val) : value(val), left(nullptr), right(nullptr) {}
};

class BinaryTree {
public:
    BinaryTree() : root(nullptr) {}

    void insert(int value) {
        if (root == nullptr) {
            root = new TreeNode(value);
        } else {
            insertNode(root, value);
        }
    }

    void displayInorder() {
        inorderTraversal(root);
        std::cout << std::endl;
    }

    void displayPreorder() {
        preorderTraversal(root);
        std::cout << std::endl;
    }

    void displayPostorder() {
        postorderTraversal(root);
        std::cout << std::endl;
    }

private:
    TreeNode* root;

    void insertNode(TreeNode* node, int value) {
        if (value < node->value) {
            if (node->left == nullptr) {
                node->left = new TreeNode(value);
            } else {
                insertNode(node->left, value);
            }
        } else {
            if (node->right == nullptr) {
                node->right = new TreeNode(value);
            } else {
                insertNode(node->right, value);
            }
        }
    }

    void inorderTraversal(TreeNode* node) {
        if (node == nullptr) return;
        inorderTraversal(node->left);
        std::cout << node->value << " ";
        inorderTraversal(node->right);
    }

    void preorderTraversal(TreeNode* node) {
        if (node == nullptr) return;
        std::cout << node->value << " ";
        preorderTraversal(node->left);
        preorderTraversal(node->right);
    }

    void postorderTraversal(TreeNode* node) {
        if (node == nullptr) return;
        postorderTraversal(node->left);
        postorderTraversal(node->right);
        std::cout << node->value << " ";
    }
};

int main() {
    BinaryTree tree;
    tree.insert(5);
    tree.insert(3);
    tree.insert(7);
    tree.insert(2);
    tree.insert(4);
    tree.insert(6);
    tree.insert(8);

    std::cout << "Inorder Traversal: ";
    tree.displayInorder();

    std::cout << "Preorder Traversal: ";
    tree.displayPreorder();

    std::cout << "Postorder Traversal: ";
    tree.displayPostorder();

    return 0;
}

1.2 Output Explanation

In this example, the binary tree is structured as follows:

C++
      5
     / \
    3   7
   / \ / \
  2  4 6  8
  • The inorder traversal visits the nodes in this order: 2 3 4 5 6 7 8
  • The preorder traversal visits the nodes in this order: 5 3 2 4 7 6 8
  • The postorder traversal visits the nodes in this order: 2 4 3 6 8 7 5

2. Advanced Tree Operations

2.1 Deletion in a Binary Tree

Next, we will implement the deletion operation, which is more complex due to the need to maintain the tree structure.

C++
#include <iostream>

class BinaryTree {
    // ... (previous code remains the same)

public:
    void deleteValue(int value) {
        root = deleteNode(root, value);
    }

private:
    TreeNode* deleteNode(TreeNode* node, int value) {
        if (node == nullptr) return node;
        if (value < node->value) {
            node->left = deleteNode(node->left, value);
        } else if (value > node->value) {
            node->right = deleteNode(node->right, value);
        } else {
            if (node->left == nullptr) {
                TreeNode* temp = node->right;
                delete node;
                return temp;
            } else if (node->right == nullptr) {
                TreeNode* temp = node->left;
                delete node;
                return temp;
            }
            TreeNode* temp = minValueNode(node->right);
            node->value = temp->value;
            node->right = deleteNode(node->right, temp->value);
        }
        return node;
    }

    TreeNode* minValueNode(TreeNode* node) {
        TreeNode* current = node;
        while (current && current->left != nullptr)
            current = current->left;
        return current;
    }
};

int main() {
    BinaryTree tree;
    tree.insert(5);
    tree.insert(3);
    tree.insert(7);
    tree.insert(2);
    tree.insert(4);
    tree.insert(6);
    tree.insert(8);

    std::cout << "Inorder Traversal: ";
    tree.displayInorder();

    tree.deleteValue(3);
    std::cout << "Inorder Traversal after deleting 3: ";
    tree.displayInorder();

    return 0;
}

2.2 Output Explanation

After deleting the node with the value 3, the tree is restructured, and the new inorder traversal will be: 2 4 5 6 7 8

3. Height and Depth Calculation

3.1 Height of the Binary Tree

The height of a binary tree is the length of the longest path from the root to a leaf. We will implement a function to calculate the height of the tree.

C++
#include <iostream>
#include <algorithm>

class BinaryTree {
    // ... (previous code remains the same)

public:
    int getHeight() {
        return calculateHeight(root);
    }

private:
    int calculateHeight(TreeNode* node) {
        if (node == nullptr) return 0;
        int leftHeight = calculateHeight(node->left);
        int rightHeight = calculateHeight(node->right);
        return std::max(leftHeight, rightHeight) + 1;
    }
};

int main() {
    BinaryTree tree;
    tree.insert(5);
    tree.insert(3);
    tree.insert(7);
    tree.insert(2);
    tree.insert(4);
    tree.insert(6);
    tree.insert(8);

    std::cout << "Height of the tree: " << tree.getHeight() << std::endl;

    return 0;
}

3.2 Output Explanation

In this example, the height of the binary tree is calculated to be 3, representing the longest path from the root to a leaf node.

Conclusion

Implementing a binary tree in C++ involves defining the tree’s structure and implementing key operations like insertion, deletion, and traversal. This article provided a comprehensive implementation of these operations and demonstrated their outputs with real examples