Files
prog.l_ada/Homework/bintreeCalk/head.h
T
2023-05-23 16:20:15 +03:00

11 lines
159 B
C

#define MPRT 255
#define SIZE 80
typedef struct tree
{
unsigned char key;
struct tree *parent;
struct tree *left;
struct tree *right;
} Tree;