I built a function that needs to add a node to a binary search tree that is sorted by its ID (moviecode = id) but it doesn't work right. can you help me figure out whats wrong with the code?
Node *buildtree(Node *dataTree, char *name, int id, float rating, int numvote) {
if ((dataTree == NULL)) {
dataTree= make_node();
strcpy(dataTree->data.movieName,name);
dataTree->data.meanRaiting = rating;
dataTree->data.numOfVoters = numvote;
dataTree->data.movieCode = id;
return;
}
else if (dataTree->data.movieCode > id)
(buildtree (dataTree->left, name, id, rating, numvote));
else
buildtree (dataTree->right, name, id, rating, numvote);
return dataTree;
}