data-structures-and-algorithms-in-c
data-structures-and-algorithms-in-c copied to clipboard
quadraticprobing.c
trafficstars
This PR adds an implementation of Quadratic Probing in a hash table using the C programming language. It includes:
Hash function using modulo operator
Collision handling with quadratic probing ((index + i^2) % SIZE)
Insertion and display functions
Menu-driven user interface for interaction