You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In section 5.2.3,w=32 and r=4 as the case which been used in hash method.But as described above ,the size of arrays used by tabulation hashing is w/r = 8 and each array's length is 2^r=8,meanwhile,under the code,the text says:
In this case, tab is a two-dimensional array with four columns and 2^(32/4) = 256 rows
Would this is wrong or something?Maybe r is 8?By the way ,at the begin of the LinearHashTable code(java version),r is inited by 8.
The text was updated successfully, but these errors were encountered:
In section 5.2.3,
w=32
andr=4
as the case which been used in hash method.But as described above ,the size of arrays used by tabulation hashing isw/r = 8
and each array's length is2^r=8
,meanwhile,under the code,the text says:Would this is wrong or something?Maybe
r
is 8?By the way ,at the begin of theLinearHashTable
code(java version),r
is inited by 8.The text was updated successfully, but these errors were encountered: