TheAlgorithms-C/leetcode/src/701.c

15 lines
451 B
C
Raw Normal View History

2019-09-19 01:14:10 +08:00
struct TreeNode* insertIntoBST(struct TreeNode* root, int val){
if(root == NULL) {
struct TreeNode *new_val = malloc(sizeof(struct TreeNode));
new_val->val = val;
new_val->left = new_val->right = NULL;
return new_val;
} else {
if (root->val >= val)
root->left = insertIntoBST(root->left, val);
else
root->right = insertIntoBST(root->right, val);
}
return root;
}