1078 Hashing (25point(s)) Easy only once *哈希表的问题,散列表取值范围
基本思想:主要是hash表中的平方探测法得问题;关键点:注意一个问题,平方探测法并不能完美解决散列问题;并且在这个题目中,平方探测法的step取值为step=1*1,2*2,.....,(n-1)*(n-1),其中n为散列表长度;#include#include#include#include#include#include#include#includeusingnamespacestd;usi