<bdo id='b651z'></bdo><ul id='b651z'></ul>
<tfoot id='b651z'></tfoot>

<small id='b651z'></small><noframes id='b651z'>

    1. <legend id='b651z'><style id='b651z'><dir id='b651z'><q id='b651z'></q></dir></style></legend>

      1. <i id='b651z'><tr id='b651z'><dt id='b651z'><q id='b651z'><span id='b651z'><b id='b651z'><form id='b651z'><ins id='b651z'></ins><ul id='b651z'></ul><sub id='b651z'></sub></form><legend id='b651z'></legend><bdo id='b651z'><pre id='b651z'><center id='b651z'></center></pre></bdo></b><th id='b651z'></th></span></q></dt></tr></i><div id='b651z'><tfoot id='b651z'></tfoot><dl id='b651z'><fieldset id='b651z'></fieldset></dl></div>

      2. 使用 hash_map 时,在 stl 字符串上使用的最佳散列算法是什么?

        时间:2023-08-26
      3. <small id='6f94l'></small><noframes id='6f94l'>

          • <bdo id='6f94l'></bdo><ul id='6f94l'></ul>
              <tbody id='6f94l'></tbody>

                <i id='6f94l'><tr id='6f94l'><dt id='6f94l'><q id='6f94l'><span id='6f94l'><b id='6f94l'><form id='6f94l'><ins id='6f94l'></ins><ul id='6f94l'></ul><sub id='6f94l'></sub></form><legend id='6f94l'></legend><bdo id='6f94l'><pre id='6f94l'><center id='6f94l'></center></pre></bdo></b><th id='6f94l'></th></span></q></dt></tr></i><div id='6f94l'><tfoot id='6f94l'></tfoot><dl id='6f94l'><fieldset id='6f94l'></fieldset></dl></div>
              1. <legend id='6f94l'><style id='6f94l'><dir id='6f94l'><q id='6f94l'></q></dir></style></legend>

                <tfoot id='6f94l'></tfoot>

                  本文介绍了使用 hash_map 时,在 stl 字符串上使用的最佳散列算法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我发现 VS2005 上的标准散列函数在尝试实现高性能查找时非常缓慢.有哪些快速有效的散列算法可以避免大多数冲突的好例子?

                  I've found the standard hashing function on VS2005 is painfully slow when trying to achieve high performance look ups. What are some good examples of fast and efficient hashing algorithms that should void most collisions?

                  推荐答案

                  我与 Paul Larson 一起工作 Microsoft Research 的一些哈希表实现.他在各种数据集上研究了许多字符串散列函数,发现简单的乘以 101 和加法循环的效果出奇地好.

                  I worked with Paul Larson of Microsoft Research on some hashtable implementations. He investigated a number of string hashing functions on a variety of datasets and found that a simple multiply by 101 and add loop worked surprisingly well.

                  unsigned int
                  hash(
                      const char* s,
                      unsigned int seed = 0)
                  {
                      unsigned int hash = seed;
                      while (*s)
                      {
                          hash = hash * 101  +  *s++;
                      }
                      return hash;
                  }
                  

                  这篇关于使用 hash_map 时,在 stl 字符串上使用的最佳散列算法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何在c ++中获取字符串的哈希码 下一篇:用户定义类的哈希函数.如何结交朋友?:)

                  相关文章

                  <legend id='TEBzc'><style id='TEBzc'><dir id='TEBzc'><q id='TEBzc'></q></dir></style></legend><tfoot id='TEBzc'></tfoot>

                  <small id='TEBzc'></small><noframes id='TEBzc'>

                      • <bdo id='TEBzc'></bdo><ul id='TEBzc'></ul>
                    1. <i id='TEBzc'><tr id='TEBzc'><dt id='TEBzc'><q id='TEBzc'><span id='TEBzc'><b id='TEBzc'><form id='TEBzc'><ins id='TEBzc'></ins><ul id='TEBzc'></ul><sub id='TEBzc'></sub></form><legend id='TEBzc'></legend><bdo id='TEBzc'><pre id='TEBzc'><center id='TEBzc'></center></pre></bdo></b><th id='TEBzc'></th></span></q></dt></tr></i><div id='TEBzc'><tfoot id='TEBzc'></tfoot><dl id='TEBzc'><fieldset id='TEBzc'></fieldset></dl></div>