Add the hashtable based on uthash.h to docs

This commit is contained in:
krahets
2023-04-18 21:19:57 +08:00
parent dbc4906582
commit 661603d467
5 changed files with 13 additions and 10 deletions
+1 -2
View File
@@ -26,8 +26,7 @@ int *twoSumBruteForce(int *nums, int numsSize, int target, int *returnSize) {
struct hashTable {
int key;
int val;
// 借助 LetCode 上常用的哈希表
UT_hash_handle hh;
UT_hash_handle hh; // 基于 uthash.h 实现
};
typedef struct hashTable hashTable;