typedef struct hashtable_struct{ pool_t p; int size; int count; struct hashnode_struct *z; }*hashtable,_hashtable; 对这个结构说明如下: pool_t:内存池结构管理hashtable使用的内存。结构参考"C语言内存池使用模型" size:当前hash的接点空间大小。 count:用于表示当前接点空间中可用的hash接点个数 z:...
hashtable的数据结构: 复制代码代码如下: typedefstructhashtable_struct{ pool_tp; intsize; intcount; structhashnode_struct*z; }*hashtable,_hashtable; 对这个结构说明如下: pool_t:内存池结构管理hashtable使用的内存。结构参考"C语言内存池使用模型" ...