Skip to content

Instantly share code, notes, and snippets.

View Zerk123's full-sized avatar

Zerk Shaban Zerk123

  • Software Engineer @ Arrivy Inc.
  • Lahore, Pakistan
View GitHub Profile
/* Deleting a node from Binary search tree */
#include<iostream>
using namespace std;
struct Node {
int data;
struct Node *left;
struct Node *right;
};
//Function to find minimum in a tree.
Node* FindMin(Node* root)