Hashing - Average Search Time(哈希二次探测再散列

该博客讨论了如何使用哈希表和二次探测再散列解决冲突问题。首先,将一系列唯一正整数插入哈希表,然后计算查找另一组正整数的平均搜索时间。当表大小为素数时效果最佳。输入包括表的大小、插入数值的数量和查找数值的数量。若无法插入某个数字,则输出相应提示,最后输出所有查找操作的平均搜索时间(保留一位小数)。
摘要由CSDN通过智能技术生成

知道如下两个公式:
Hash=key%size
id=(Hash(x)+C)%size
C = 1*1 , -1*1 , 2*2 , -2*2…size*size , -size*size

id就是要将X插入到哈希表里的下标值

第一行是要插入的一个序列,判断会不会冲突
第二行是要查找的序列,求查找次数
最后算出平均查找次数

The task of this problem is simple: insert a sequence of distinct positive integers into a hash table first. Then try to find another sequence of integer keys from the table and output the average search time (the number of comparisons made to find whether or not the key is in the table). The hash function is defined to be H(key)=key%TSize where TSize is the maximum size of the hash table. Quadratic probing (with positive increments only) is used to solve the collisions.

Note that the table size is better to be prime. If the maximum size given by the user is not prime, you must re-define the table size to be the smallest prime number which is larger than the size given by the user.

Input Specificati

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值