MIPI_AdvancedC_FRTK/Lect7/66_AVL_tree.c

18 lines
194 B
C
Raw Normal View History

2024-11-14 08:45:50 +03:00
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
struct node {
int key;
uint32_t height;
struct node *left;
struct node *right;
};
int main(void)
{
return 0;
}