MIPI_AdvancedC_FRTK/Lect7/67_insert.c
2024-11-14 08:45:50 +03:00

34 lines
583 B
C

#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
struct node {
int key;
uint32_t height;
struct node *left;
struct node *right;
};
struct node* insert(struct node *p, int k)
{
if( p==NULL ) {
p=(struct node*)calloc(1,sizeof(struct node));
p->key=k;
return p;
}
if( k < p->key )
p->left = insert(p->left, k);
else
p->right = insert(p->right,k);
return balance(p);
//~ return p;//без балансировки обычное дерево поиска
}
int main(void)
{
return 0;
}