Deletion from BST (Binary Search Tree)

#include <bits/stdc++.h>
using namespace std;

// Data structure to store a Binary Search Tree node
struct Node {
    int data;
    Node *left, *right;
};

// Function to create a new binary tree node having given key
Node* newNode(int key)
{
    Node* node = new Node;
    node->data = key;
    node->left = node->right = nullptr;

    return node;
}

// Function to perform inorder traversal of the BST
void inorder(Node *root)
{
    if (root == nullptr)
        return;

    inorder(root->left);
    cout << root->data << " ";
    inorder(root->right);
}

// Helper function to find minimum value node in subtree rooted at curr 
Node* minimumKey(Node* curr)
{
    while(curr->left != nullptr) {
        curr = curr->left;
    }
    return curr;
}

// Recursive function to insert an key into BST
Node* insert(Node* root, int key)
{
    // if the root is null, create a new node an return it
    if (root == nullptr)
        return newNode(key);

    // if given key is less than the root node, recuse for left subtree
    if (key < root->data)
        root->left = insert(root->left, key);

    // if given key is more than the root node, recuse for right subtree
    else
        root->right = insert(root->right, key);

    return root;
}

// Iterative function to search in subtree rooted at curr & set its parent
// Note that curr & parent are passed by reference
void searchKey(Node* &curr, int key, Node* &parent)
{
    // traverse the tree and search for the key
    while (curr != nullptr && curr->data != key)
    {
        // update parent node as current node
        parent = curr;

        // if given key is less than the current node, go to left subtree
        // else go to right subtree
        if (key < curr->data)
            curr = curr->left;
        else
            curr = curr->right;
    }
}

// Function to delete node from a BST
void deleteNode(Node*& root, int key)
{
    // pointer to store parent node of current node
    Node* parent = nullptr;

    // start with root node
    Node* curr = root;

    // search key in BST and set its parent pointer
    searchKey(curr, key, parent);

    // return if key is not found in the tree
    if (curr == nullptr)
        return;

    // Case 1: node to be deleted has no children i.e. it is a leaf node
    if (curr->left == nullptr && curr->right == nullptr)
    {
        // if node to be deleted is not a root node, then set its
        // parent left/right child to null
        if (curr != root)
        {
            if (parent->left == curr)
                parent->left = nullptr;
            else
                parent->right = nullptr;
        }
        // if tree has only root node, delete it and set root to null
        else
            root = nullptr;

        // deallocate the memory
        free(curr);     // or delete curr;
    }

    // Case 2: node to be deleted has two children
    else if (curr->left && curr->right)
    {
        // find its in-order successor node
        Node* successor  = minimumKey(curr->right);

        // store successor value
        int val = successor->data;

        // recursively delete the successor. Note that the successor
        // will have at-most one child (right child)
        deleteNode(root, successor->data);

        // Copy the value of successor to current node
        curr->data = val;
    }

    // Case 3: node to be deleted has only one child
    else
    {
        // find child node
        Node* child = (curr->left)? curr->left: curr->right;

        // if node to be deleted is not a root node, then set its parent
        // to its child
        if (curr != root)
        {
            if (curr == parent->left)
                parent->left = child;
            else
                parent->right = child;
        }

        // if node to be deleted is root node, then set the root to child
        else
            root = child;

        // deallocate the memory
        free(curr);
    }
}

// main function
int main()
{
    Node* root = nullptr;
    int keys[] = { 15, 10, 20, 8, 12, 16 };

    for (int key : keys)
        root = insert(root, key);

    // deletion from BST
    deleteNode(root, 16);
    inorder(root);

    return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值