Algo-Phantoms / Algo-Tree

Algo-Tree is a collection of Algorithms and data structures which are fundamentals to efficient code and good software design. Creating and designing excellent algorithms is required for being an exemplary programmer. It contains solutions in various languages such as C++, Python and Java.
MIT License
363 stars 618 forks source link

Hashtable chaining and linear probing #1917

Open aaadddiii opened 3 years ago

aaadddiii commented 3 years ago

Is your feature request related to a problem? Please describe. Hashtables are an important concept in data structures, It has a huge number of applications . Linear probing and hashtable chaining are two collision resolution techniques used in hashtables.

Describe the solution you'd like Collision resolution is very important in hashtables as there is high chance that 2 keys might have the same hash . Linear probing and hashtable chaining are the solution for this problem

Do you want to work on it I would like to implement this in c++ and java Please assign me this issue as part of GSSOC '21

Srishti013 commented 3 years ago

Please assign this to me in Python