mirror of
https://github.com/ada-dmitry/prog.l_ada.git
synced 2026-09-24 01:00:15 +00:00
11 lines
159 B
C
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;
|