implementation of a hash table

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ronyp
    New Member
    • Feb 2007
    • 1

    implementation of a hash table

    I need a simple implementation in c or c++ of hash table which contains the following capapbilities API
    1. insert pair (of key+value)
    2. remove pair
    3. init (size of hash)
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    Use and STL map or multimap

    Comment

    Working...