HashTable Methods for handling collisions in Hashtable Coalesced Chaining Method: https://www.geeksforgeeks.org/coalesced-hashing/ Direct Chaining Method: https://www.researchgate.net/figure/Hashing-with-direct-chaining_fig1_200111326 Double Hashing: https://www.geeksforgeeks.org/double-hashing/ Linear Probing Method: https://www.log2base2.com/algorithms/searching/linear-probing-hash-table.html Quadratic Probing Method: https://www.geeksforgeeks.org/quadratic-probing-in-hashing/