From 5c250c254ef51252c6e50f0aa8451a100bb6481f Mon Sep 17 00:00:00 2001 From: Tianfeng Liu Date: Tue, 5 Jun 2018 22:10:02 +0800 Subject: [PATCH] Update 11.4.md fix some type error --- C11-Hash-Tables/11.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C11-Hash-Tables/11.4.md b/C11-Hash-Tables/11.4.md index f74f535c..f5596045 100644 --- a/C11-Hash-Tables/11.4.md +++ b/C11-Hash-Tables/11.4.md @@ -45,7 +45,7 @@ Write pseudocode for HASH-DELETE as outlined in the text, and modify HASH-INSERT j = h(k, i) if T[j] == NIL or T[j] == DELETED T[j] = k - rteurn j + return j else i = i + 1 until i == m error "hash table overflow"