野原新之楠 2019-04-06 15:53 采纳率: 80%
浏览 299
已采纳

Java 关于如何override hashcode的问题

3个练习里分别要定义3中ADT(abstract data type)
1. FList (定义一个list)
2. FSet (定义一个set)
3. FMap(定义一个map)

在改写hashcode时候遇到了困难。前两个练习没有做关于hashcode的说明
我直接 return FList.size() 和 FSet.size() ps:我知道这样不对。。。。。

第3个练习里有了规定 瞬间不懂了。。。

If m1 and m2 are values of the FMap ADT, and

    ! (m1.equals(m2))



then m1.hashCode() is unlikely to be equal to m2.hashCode().

Note: The word "unlikely" will be interpreted as follows. For every type K and V, if both m1 and m2 are selected at random from a set of FMap values such that for every non-negative integer n and int value h the probability of a randomly selected FMap m having

n == m.size() is

P(n) = 1/(2^(n+1))

and for each key k such that m.containsKey(k) the probability that

     h == k.hashCode() is at most 1/5

and for each value v such that v.equals(m.get(k)) the probability that

     h == v.hashCode() is at most 1/5

and the three probabilities above are independent

then the probability of m1.hashCode() == m2.hashCode() when m1 and m2 are not equal is less than 40%.

这里面是要求我设计hashcode m1和m2相等概率小于40%?

  • 写回答

1条回答

  • threenewbee 2019-04-06 16:30
    关注

    不是hashcode m1和m2相等概率小于40%,而是在 m1 m2 不相等的情况下,hashcode相等的概率小于40%(这个概率一般叫做hash碰撞率)

    如果m1和m2相等,则hashcode必须100%相等
    40%其实基本上你可以无视了,除非你根本没有任何算法,否则不会触及到这么高的。
    一个典型的做法,就是把lst的每个元素的hashcode相加,最后取一个余数,就可以满足题意了。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记