摘要: 4.1 字典数据结构 typedef struct dict{ //类型特定函数 dictType *type; //私有数据 void *privateata; //哈希表 dictht ht[2]; //rehash 索引,rehash未进行时,值为-1 int rehashidx;}dict; 阅读全文
posted @ 2020-05-06 11:30 傑0327 阅读(923) 评论(0) 推荐(0) 编辑