1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
// unordered_multiset::bucket
#include <iostream>
#include <string>
#include <unordered_set>
int main ()
{
std::unordered_multiset<std::string> myums =
{"water","sand","ice","water"};
for (const std::string& x: myums) {
std::cout << x << " is in bucket #" << myums.bucket(x) << std::endl;
}
return 0;
}
| |