语法¶
#include <plhash.h>
typedef struct PLHashTable PLHashTable;
描述¶
不透明的 PLHashTable
结构表示哈希表。表中的条目类型为 PLHashEntry
,并组织成桶。哈希表中桶的数量可以在表的生命周期内由库函数更改,以优化速度和空间。
新的哈希表由 PL_NewHashTable 函数创建,并由 PL_HashTableDestroy 函数销毁。
#include <plhash.h>
typedef struct PLHashTable PLHashTable;
不透明的 PLHashTable
结构表示哈希表。表中的条目类型为 PLHashEntry
,并组织成桶。哈希表中桶的数量可以在表的生命周期内由库函数更改,以优化速度和空间。
新的哈希表由 PL_NewHashTable 函数创建,并由 PL_HashTableDestroy 函数销毁。