Updated: references & documentation
This commit is contained in:
parent
1991eeadc8
commit
948f4159b3
|
@ -6,6 +6,6 @@ if not exist ".\build" mkdir ".\build"
|
|||
|
||||
pushd .\build
|
||||
|
||||
cl /Zi ..\src\main.c /Feapp.exe /Od /nologo /I..\src
|
||||
cl /Zi ..\src\main.c /Feapp.exe /Od /nologo /I..\src
|
||||
|
||||
popd .\build
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
12-04-2024 René Huiberts <rhuibertsjr@gmail.com>
|
||||
|
||||
Updated: references & documentation
|
||||
|
||||
12-04-2024 René Huiberts <rhuibertsjr@gmail.com>
|
||||
|
||||
Added: project layout
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
=== HASH TABLE =================================================================
|
||||
|
||||
1. Calling the hash-function with the same input, should always return the
|
||||
same output.
|
||||
2. Hash output should be unique.
|
||||
3. Computing a hash should be fast, the whole point of a hash table is fast
|
||||
lookup time.
|
||||
4. Hash output should be "random".
|
|
@ -1,5 +1,8 @@
|
|||
|
||||
=== REFERENCES =================================================================
|
||||
|
||||
[1] Strager (2023) " Faster than Rust and C++: the PERFECT hash table"
|
||||
https://www.youtube.com/watch?v=DMQ_HcNSOAI
|
||||
[1] Strager (2023) "Faster than Rust and C++: the PERFECT hash table"
|
||||
https://www.youtube.com/watch?v=DMQ_HcNSOAI
|
||||
|
||||
[2] J. Sorber (2020) " Understanding and implementing a Hash Table (in C)"
|
||||
https://www.youtube.com/watch?v=2Ti5yvumFTU
|
Loading…
Reference in New Issue
Block a user