Chained Dictionary Assignment

From CSE425S Wiki
Jump to navigation Jump to search

SingleList Implementation

Hashtable Implementation

 signature HASHED_DICTIONARY = sig include DICTIONARY
    type ''k hash_function = ''k -> int
    val create_hashed : (int * ''k hash_function) -> (''k,'v) dictionary
end