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.

btree.h 178B

1234567891011121314
  1. #ifndef _BTREE_H_
  2. #define _BTREE_H_
  3. typedef int data_type;
  4. typedef struct btree *btree_t;
  5. struct btree
  6. {
  7. data_type data;
  8. btree_t lchild;
  9. btree_t rchild;
  10. };
  11. #endif