Skip to content

Commit

Permalink
Update 11.4.md
Browse files Browse the repository at this point in the history
fix some type error
  • Loading branch information
leodestiny committed Jun 5, 2018
1 parent 7d683b2 commit 5c250c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C11-Hash-Tables/11.4.md
Expand Up @@ -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"
Expand Down

0 comments on commit 5c250c2

Please sign in to comment.