I have two inputs (example): "Smooth Criminal" and "Billie Jean", that return the same index key, when run through a hash function.
In the array[], i want to save the path to the songs MP3 file on my harddisk.
Let's say they both return 0 as index key, so "Smooth Criminal" goes to index: 0 and "Billie Jean" goes to index 0 + 1^2 = 1.
How would i find the filepath of "Billie Jean" in the array, when both songs return the same key?
Thanks