约 183,000 个结果
在新选项卡中打开链接
  1. 到底什么是哈希值,哈希值到底是怎么生成的,有什么用? - 知乎

    由于他的调皮,导致客户挑妹纸的时间大幅延长,从10秒到了800秒。 在代码中,一般都有一些比较复杂的算法去运算而得出这个hash值,一旦破解了这个算法,就又可以调皮啦。 在JAVA中,hash算法在HashMap中有体现,有兴趣的可以去看看源码。

  2. terminology - What exactly (and precisely) is "hash?" - Computer ...

    2016年4月5日 · Wikipedia has detailed articles on hash tables and cryptographic hash functions. What are you looking for that isn't in those?

  3. 什么是 hash? - 知乎

    提到hash,相信大多数同学都不会陌生,之前很火现在也依旧很火的技术区块链背后的底层原理之一就是hash,下面就从hash算法的原理和实际应用等几个角度,对hash算法进行一个讲解。 1、什么是Hash Hash也称散列、哈希,对应的英文都是Hash。

  4. Git的hash如果重复会发生什么?或者说--oneline参数展示简 …

    2022年1月20日 · Git通过hash确定唯一的提交序列,hash是40位的,从概率上来说也许hash是不会重复的,但是从数学上讲,它是有可能重复的(撞hash,不是说4…

  5. hash算法的密钥是什么? - 知乎

    2021年2月18日 · 3、hash类型识别工具HashIdentifier 可以使用HashIdentifier识别数据的hash算法类型,HashIdentifier是python开发的工具,需要有python3的基础环境,下载压缩包,解压就可以使用,如果需要可以私信allen老师。

  6. C++ 11的std::hash算法,使用了什么实际的哈希实现? - 知乎

    2020年12月15日 · Jenkins哈希函数(One-at-a-Time hash):由Bob Jenkins设计,它旨在提供一个快速计算并且分布均匀的哈希值。 CRC32:循环冗余校验(CRC)的一种形式,主要用于检测数据中的小错误,但有时也用作哈希函数。

  7. What is the advantage of seperate chaining over open addressing?

    6 Hash tables resolve collisions through two mechanisms, separate chaining or open hashing and open addressing or closed hashing. Though the first method uses lists (or other fancier data structure) in hash table to maintain more than one entry having same hash values, the other uses complex ways of skipping n elements on collsion.

  8. 什么是哈希算法? - 知乎

    来分享下鹅厂 WXG 后开开发工程师 foxxiao对于 Hash的一些认识。 本文对完美 Hash 的概念进行了梳理,通过 Hash 构建步骤来了解它是如何解决 Hash 冲突的,并比较了 Hash 表和完美 Hash 表。下面介绍常见的 Hash 与 Perfect Hash 函数及它们在不同场景的应用。 散列函数(英语:Hash function)又称散列算法、哈希 ...

  9. hash - Optimal parameters for a Bloom filter - Computer Science …

    2022年2月11日 · Thus, no matter what I do, with 256-bits hash functions I cannot reduce the probability even below 99%! What can I do? Is the Bloom filter useless in my case? I was thinking to "glue" $120000/256\approx 469$ hash functions together. But then I need $469\times6 =2814$ expensive SHA-256 evaluations per one filter operation.

  10. hash算法的数学原理是什么,如何保证尽可能少的碰撞? - 知乎

    hash相当与把值映射到另外一个空间。 第一个答案这一句话很对,说到了要点。 再详细一点,hash函数相当于,把原空间的一个数据集映射到另外一个空间。 所以说理论上的完美无碰撞需要映射到的空间不小于原空间。但实践中是不会这么去做。 如何减少碰撞概率,我觉得应该可以从三 …