data-structures-and-algorithms-in-c icon indicating copy to clipboard operation
data-structures-and-algorithms-in-c copied to clipboard

quadraticprobing.c

Open xoxo444 opened this issue 3 months ago • 0 comments
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

xoxo444 avatar Jul 29 '25 12:07 xoxo444