我想在stl集合中查找元素的等级。我能够从头开始遍历该元素并找出其排名,但是这需要O(n)。是否有任何方法可以在O(logn)中查找等级。
否;平衡树不需要存储每个节点的后代数目,这对于更快地为distance( s.begin(), iter )
和迭代器std::set s
计算iter
是必需的(这是我想是您的意思)。因此,除了逐个计数项之外,信息根本不存在。
如果需要执行许多这样的计算,请将set
复制到排序的随机访问序列中,例如vector
或deque
,但是对该序列的修改会变得很昂贵。
一种执行您要求的树数据结构可能存在于某个地方的免费库中,但我不知道该结构。
您正在寻找的被称为Order Statistic Tree。如果您使用的是GNU C ++库,则应该具有一个可用于构建订单统计树的扩展。下面是一个简短的示例:
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <cstdio>
using namespace std;
using namespace pb_ds;
typedef tree<
int, /* key type */
null_mapped_type, /* value type */
less<int>, /* comparison */
rb_tree_tag, /* for having an rb tree */
tree_order_statistics_node_update> order_set;
int main()
{
order_set s;
s.insert(10);
s.insert(20);
s.insert(50);
s.insert(25);
printf("rank of 25 = %d\n", s.order_of_key(25));
}
输出应为rank of 25 = 2
。有关更多示例,请参见this file。
@ Potatoswatter建议的排序矢量的功能由flat_set
中的flat_set
提供。该文档列出了以下折衷方案
如果您使用的是GCC,实际上是一个内置的解决方案,但是Subhasis Das的答案有些过时了,由于更新,它不适用于较新版本的GCC。标头现在是
Boost.Container
并且集合结构为
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
或者,如果需要多重集,则可以用typedef tree<
int,
null_type,
std::less<int>,
rb_tree_tag,
tree_order_statistics_node_update> ordered_set;
代替std::less<int>
。
这是按等级查找的演示:
std::less_equal<int>