gpt4 book ai didi

c++ - 搜索 vector 成员的前n%个C++

转载 作者:行者123 更新时间:2023-12-01 15:10:54 25 4
gpt4 key购买 nike

让我们定义

struct A
{
int m;
...
}

std::vector<A> vec; //a large vector (magnitude of million members)

我有兴趣找到 vec 的前2%成员,这些成员在 m 方法中具有最高的值(value)。

为此,我在想这样的事情:
std::multimap<int, A> top_members;

const auto nr_top = std::lround(vec.size() * 0.02);
for (auto it = vec.begin(); it != vec.end(); ++it)
{
if(top_members.size() == nr_top + 1)
top_members.erase(std::prev(top_members.end()));
else
top_members[it->m] = *it
}

您是否认为任何更快的解决方案?

最佳答案

std::partial_sort 具有n log m的复杂性,其中n是元素的数量,而m是要排序的元素的数量。您可以使用它对排序,仅将排序为前2%。

const auto nr_top = std::lround(vec.size() * 0.02);
std::partial_sort(vec.begin(), vec.begin() + nr_top, vec.end(),
[](auto a, auto b){return a > b}
);
// the top 2% will be at the front of the vector

如果您需要使用其他容器中的前2%,则可以改用 std::partial_sort_copy

关于c++ - 搜索 vector 成员的前n%个C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60437322/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com