You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 1234567891011121314 |
- #ifndef _BTREE_H_
- #define _BTREE_H_
-
- typedef int data_type;
-
- typedef struct btree *btree_t;
- struct btree
- {
- data_type data;
- btree_t lchild;
- btree_t rchild;
- };
-
- #endif
|