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

14 lines
225 B
C

#include <stdint.h>
#include <stdio.h>
typedef struct tree {
int key;//datatype
struct tree *left, *right;
struct tree *parent; // необязательное поле
} tree;
int main(void)
{
return 0;
}