Let's Code Creating Binary Tree in C++

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 282:- Let's Code Creating Binary Tree in C++

Here's the code to create a binary tree in C++ using a class-based approach:

cppCopy code

#include <iostream> class Node { public:    int data;    Node* left;    Node* right;    Node(int val) {        data = val;        left = nullptr;        right = nullptr;    } }; class BinaryTree { public:    Node* root;    BinaryTree() {        root = nullptr;    }    void insert(int val) {        insertRecursive(root, val);    } private:    void insertRecursive(Node* &current, int val) {        if (current == nullptr) {            current = new Node(val);            return;        }        if (val < current->data)            insertRecursive(current->left, val);        else            insertRecursive(current->right, val);    } }; // Function to perform inorder traversal for verification void inorderTraversal(Node* root) {    if (root) {        inorderTraversal(root->left);        std::cout << root->data << " ";        inorderTraversal(root->right);    } } int main() {    int arr[] = {5, 2, 8, 1, 3, 7, 9};    int n = sizeof(arr) / sizeof(arr[0]);    BinaryTree binaryTree;    for (int i = 0; i < n; i++) {        binaryTree.insert(arr[i]);    }    // Verify the created binary tree by performing inorder traversal    std::cout << "Inorder Traversal: ";    inorderTraversal(binaryTree.root);    std::cout << std::endl;    // Remember to free the allocated memory after use to avoid memory leaks.    // (This is not included in this example for simplicity.)    return 0; }

In this code, we define a Node class to represent the nodes of the binary tree and a BinaryTree class to handle the tree operations. The BinaryTree class contains a root pointer to the root node of the binary tree. We provide an insert function in the BinaryTree class to insert elements into the binary tree using a recursive helper function insertRecursive.

The main function creates a binary tree object, inserts elements from the array arr into the binary tree, and then verifies the created binary tree by performing an inorder traversal using the inorderTraversal function.

Remember to free the allocated memory for the nodes after use to avoid memory leaks. This can be done by adding a destructor to the BinaryTree class to recursively delete the nodes in the destructor.

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