Skip to content

Implement an Unordered Map in C++ using Hash Functions. Without any inbuilt function of C++.

Notifications You must be signed in to change notification settings

somyalalwani/Unordered-Map

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

Data Structures & Algorithms for Problem Solving

Problem : Hashing

Task : Implement an Unordered Map.

Aim : To learn how Hashing works and importance of Hash Functions. Also look how Universal Hashing is implemented.

Functions to implement:

1. insert(key, value) – insert key value pair.
2. erase(key) – erase if key is present otherwise do nothing.
3. find(key) – returns true or false.
4. map[key] – returns the value mapped to key.

Note : Unordered Map should be generic. No inbuilt functions are used.

About

Implement an Unordered Map in C++ using Hash Functions. Without any inbuilt function of C++.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages