题目描述
The task of this problem is simple: insert a sequence ofdistinct positive integers into a hash table, and output the positions of theinput numbers. The hash function isdefined to be "H(key) = key % TSize" where TSize is the maximum sizeof the hash table. Quadratic probing(with positive increments only) is used to solve the collisions.The task of this problem is simple: