Binary Search Tree
Binary Search Tree
#include <stdio.h>
#include <stdlib.h>
struct Node {
int data;
struct Node* left;
struct Node* right;
};
return root;
}
return root;
}
int main() {
struct Node* root = NULL;
return 0;
}