4ndrelim / data-structures-and-algorithms

This repository contains design and implementation of fundamental data structures and algorithms.
59 stars 18 forks source link

WIP - Add hash set implemented with open addressing #19

Closed euchangxian closed 1 year ago

euchangxian commented 1 year ago

Add implementation of HashSet using open addressing to resolve collisions. This implementation uses a division hashing function, and linear probing to probe for empty buckets.