splaytree_types.h
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:0k
源码类别:
midi
开发平台:
Unix_Linux
- #ifndef SPLAYTREE_TYPES_H
- #define SPLAYTREE_TYPES_H
- typedef struct SPLAYNODE_T {
- int type;
- struct SPLAYNODE_T * left, * right;
- void * data;
- void * key;
- } splaynode_t;
- typedef struct SPLAYTREE_T {
- splaynode_t * root;
- int (*compare)();
- void * (*copy_key)();
- void (*free_key)();
- } splaytree_t;
- #endif