How to get a random element from a C++ container?(如何从 C++ 容器中获取随机元素?)
问题描述
从 STL 范围中获取 [伪] 随机元素的好方法是什么?
What is a good way to get a [pseudo-]random element from an STL range?
我能想到的最好方法是做 std::random_shuffle(c.begin(), c.end()) 然后从 c.begin 中取出我的随机元素().
The best I can come up with is to do std::random_shuffle(c.begin(), c.end()) and then take my random element from c.begin().
但是,我可能想要一个来自 const 容器的随机元素,或者我可能不想要完全 shuffle 的成本.
However, I might want a random element from a const container, or I might not want the cost of a full shuffle.
有更好的方法吗?
推荐答案
我在 Google+ 的一篇文章中发布了这个解决方案,其他人引用了这个.把它贴在这里,因为这个比其他的稍微好一点,因为它通过使用 std::uniform_int_distribution 避免了偏见:
I posted this solution on a Google+ article where someone else referenced this. Posting it here, as this one is slightly better than others because it avoids bias by using std::uniform_int_distribution:
#include <random>
#include <iterator>
template<typename Iter, typename RandomGenerator>
Iter select_randomly(Iter start, Iter end, RandomGenerator& g) {
std::uniform_int_distribution<> dis(0, std::distance(start, end) - 1);
std::advance(start, dis(g));
return start;
}
template<typename Iter>
Iter select_randomly(Iter start, Iter end) {
static std::random_device rd;
static std::mt19937 gen(rd());
return select_randomly(start, end, gen);
}
示例用途是:
#include <vector>
using namespace std;
vector<int> foo;
/* .... */
int r = *select_randomly(foo.begin(), foo.end());
我最终创建了一个遵循类似方法并具有更好设计的要点.
这篇关于如何从 C++ 容器中获取随机元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从 C++ 容器中获取随机元素?
基础教程推荐
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- CString 到 char* 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
