hash_search

This commit is contained in:
苏淞丰
2019-12-02 11:12:56 +08:00
parent eb5899ed15
commit 4d9470555f

View File

@@ -25,8 +25,7 @@ void create_list(int key) {
if (p != NULL) {
n -> next = p;
hashtab[index].next = n;
}
else
} else
hashtab[index].next = n;
}
int hash_search(int key) {