2024-04-23 17:33:27 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "binary_search_tree.h"
|
|
|
|
|
|
|
|
node_t *build_tree(int *tree_data, size_t tree_data_len){
|
|
|
|
|
|
|
|
node_t *koren = (node_t *)malloc(sizeof(node_t));
|
|
|
|
|
2024-04-23 17:34:49 +00:00
|
|
|
if(tree_data == NULL || tree_data_len == 0){
|
2024-04-23 17:33:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-04-23 17:34:49 +00:00
|
|
|
if(tree_data != NULL && tree_data_len != 0){
|
2024-04-23 17:33:27 +00:00
|
|
|
koren->data = tree_data[0];
|
2024-04-23 17:37:11 +00:00
|
|
|
koren->left = (node_t *)tree_data[0];
|
2024-04-23 17:33:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return koren;
|
|
|
|
}
|
|
|
|
|