mirror of
https://github.com/ada-dmitry/prog.l_ada.git
synced 2026-09-24 09:10:14 +00:00
add calkBT
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
#define MPRT 255
|
||||
#define SIZE 80
|
||||
|
||||
typedef struct tree
|
||||
{
|
||||
unsigned char key;
|
||||
struct tree *parent;
|
||||
struct tree *left;
|
||||
struct tree *right;
|
||||
} Tree;
|
||||
Reference in New Issue
Block a user