C++ 无序集合库 - bucket



描述

它返回元素值为 k 的所在桶的编号。

声明

以下是 std::unordered_set::bucket 的声明。

C++11

size_type bucket ( const key_type& k ) const;

参数

k − 包含桶值信息。

返回值

它返回元素值为 k 的所在桶的编号。

异常

如果任何元素比较对象抛出异常,则抛出异常。

请注意,无效参数会导致未定义行为。

时间复杂度

常数时间。

示例

以下示例演示了 std::unordered_set::bucket 的用法。

#include <iostream>
#include <string>
#include <unordered_set>

int main () {
   std::unordered_set<std::string> myset = {"sai","ram","krishna","prasad"};

   for (const std::string& x: myset) {
      std::cout << x << " is in bucket #" << myset.bucket(x) << std::endl;
   }

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果:

prasad is in bucket #0
krishna is in bucket #2
ram is in bucket #1
sai is in bucket #3
unordered_set.htm
广告