Skip to content

kostasfilios/HashTable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

HashTable

Example for HashTable with LinkedList. This examples shows how hashtable calculates the index for key value pairing, also object with same hashing index stored at custom linked list.

enum LinkedList<T> {
    case end
    indirect case node(T, LinkedList<T>)
}

About

Example for HashTable with LinkedList

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages