中英
rehashing
/ ˌriːˈhæʃɪŋ /
  • 简明
  • 柯林斯
  • n.[数]重散列;重杂凑
  • v.改作;再处理(rehash 的 ing 形式)
  • GRE/
  • 网络释义
  • 专业释义
  • 英英释义
  • 1

    [数] 重散列

    ... rehardenedstreak再度硬化条纹 rehashing重散列 rehashingprocedure再散列过程 ...

  • 2

     改作

    ... 改作 = rehashes 改作 = rehashing 改口 = to correct oneself ...

  • 3

     再散列

     当装填因子过大时,解决的方法是加倍扩大散列表,这样α可以 减小一半,这个过程叫做“再散列(Rehashing)”。当然,装填 因子过小时(比如 α<0.3),会浪费空间,此时散列表大小可以减 半。

短语
  • 双语例句
  • 原声例句
  • 权威例句
  • 1
    Rehashing it here is not necessary, but I'll summarize briefly.
    没有必要在这里重复讨论,不过我会简单总结一下。
  • 2
    You can acknowledge this without rehashing them over and over again in your mind, and simply be determined to make different, better decisions today.
    但是你应该承认它们没有在你的心里一遍又一遍的重复,而仅仅是为了能在今天做出不同的,更好的决定。
  • 3
    He isn't interested in rehashing his conversations within Microsoft or taking credit for the company's decision to release a software development kit.
    对于重复和微软的对话或是对公司发行软件开发工具包的决定去居功,李并不感兴趣。
查看更多
  • 百科
  • Rehashing

    Double hashing is a computer programming technique used in hash tables to resolve hash collisions, cases when two different values to be searched for produce the same hash key. It is a popular collision-resolution technique in open-addressed hash tables. Double hashing is implemented in many popular libraries.Like linear probing, it uses one hash value as a starting point and then repeatedly steps forward an interval until the desired value is located, an empty location is reached, or the entire table has been searched; but this interval is decided using a second, independent hash function (hence the name double hashing). Unlike linear probing and quadratic probing, the interval depends on the data, so that even values mapping to the same location have different bucket sequences; this minimizes repeated collisions and the effects of clustering.Given two randomly, uniformly, and independently selected hash functions and , the ith location in the bucket sequence for value k in a hash table is: Generally, and are selected from a set of universal hash functions.

查看更多