arkantrust / task-tracker

Task Track is a to-do app that lets you organize your tasks.
MIT License
0 stars 0 forks source link

Improve hashing algorithm #18

Closed arkantrust closed 10 months ago

arkantrust commented 11 months ago

Implement linear probing or any other hashing algortihm to optimize the getBucketOf method in HashMap class.

Optimize in the sense of reducing collisions, although performance is desired, further investigation is required to determine wheather it is possible to accomplish both of these objectives.

arkantrust commented 10 months ago

This was solved by #19. Sorry for my ignorance. Linear probing was already implemented.