How to select a random element in std::set in less than O(n) time?(如何在少于 O(n) 的时间内在 std::set 中选择一个随机元素?)
问题描述
这个问题添加了约束.
我愿意允许不统一的选择,只要不偏向一边.
I'm willing to allow not-uniform selection as long as it's not to lop sided.
鉴于集合通常实现为二叉搜索树",而我期望它们将包含某种用于平衡的深度或大小信息,我希望您可以对树进行某种加权随机游走.但是我不知道有任何远程便携的方式来做到这一点.
Given that "sets are typically implemented as binary search trees" and I expect they will contain some kind of depth or size information for balancing, I would expect you could do some sort of weighted random walk of the tree. However I don't know of any remotely portable way to do that.
约束不适用于摊销时间.
The constraint is NOT for the amortized time.
推荐答案
引入大小等于set的数组.使数组元素保存集合中每个元素的地址.生成以数组/集合大小为界的随机整数R
,在R
索引的数组元素中选取地址并取消引用以获得集合的元素.
Introduce array with size equal to set. Make array elements hold addresses of every element in set. Generate random integer R
bounded by array/set size, pick address in array's element indexed by R
and dereference it to obtain set's element.
这篇关于如何在少于 O(n) 的时间内在 std::set 中选择一个随机元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在少于 O(n) 的时间内在 std::set 中选择一个随机元素?


基础教程推荐
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 常量变量在标题中不起作用 2021-01-01