gpt4 book ai didi

c++ - 可搜索环形缓冲区

转载 作者:太空狗 更新时间:2023-10-29 21:46:17 25 4
gpt4 key购买 nike

我想知道是否有人可以建议一个 c++ 数据结构,它既具有 Ring Buffer 的功能(保证有限存储),但同时允许对 Ring Buffer 进行高效的线程安全搜索以查找指定数据?

最佳答案

Intel TBB containers非常适合这类问题。

concurrent_unordered_map 应该为您的情况做事,但如果您真的想要一些环形结构,您可以使用 concurrent_bounded_queue 并自己推送来模拟环形行为(见下文)。但是,您将使用此结构获得线性搜索复杂度,而不是 map 中的对数复杂度。

template<class T>
struct concurrent_ring : tbb::concurrent_bounded_queue<T>
{
void push(const T& t)
{
while(!tbb::concurrent_bounded_queue<T>::try_push(t))
pop();
}
}

关于c++ - 可搜索环形缓冲区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15668076/

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