gpt4 book ai didi

c++ - 如何告诉 Boost 循环缓冲区的当前 'write position' 以启用访问以前存储的值

转载 作者:搜寻专家 更新时间:2023-10-31 02:21:39 28 4
gpt4 key购买 nike

我想访问 Boost Circular Buffer 中的值也就是说,例如,“过去”的 5 个职位。因此,假设我现在正在将值“7”写入先前的整数流:

3, 5, 6, 9, 2, 8, 6

因此我现在:

7、3、5、6、9、2、8、6

我想要“2”,因为那是过去的 5 个位置。我如何获得它?

换句话说,当前的‘写入索引’是多少?

我认为我可能需要使用 boost::circular_buffer<double>::const_iterator但我不确定。

最佳答案

我不确定我是否理解正确,但你对模索引的担心对我来说似乎过于焦虑了。如果你问我,循环缓冲区抽象的全部目的是对调用者隐藏索引算法。

如果 Boost 让这个实现细节泄露出去,我会对库设计感到非常失望¹

这是一个简单的演示,似乎就是您想要的:

Live On Coliru

#include <iostream>
#include <boost/circular_buffer.hpp>

int main() {
boost::circular_buffer<int> cb(10); // [tag:cb-so-fixedsize] obviously

for (int msg : { 3, 5, 6, 9, 2, 8, 6, 7 }) {
cb.push_back(msg);
}

// should be 2
std::cout << "t0-5: " << cb[4] << "\n";
std::cout << "t0-5: " << *std::next(cb.begin(), 4) << "\n";

// should be 9
std::cout << "t0-5: " << cb[3] << "\n";
std::cout << "t0-5: " << *std::next(cb.begin(), 3) << "\n";

while (!cb.empty()) {
std::cout << cb.front() << " ";
cb.pop_front();
}
}

打印

t0-5: 2
t0-5: 2
t0-5: 9
t0-5: 9
3 5 6 9 2 8 6 7

¹ 我很清楚名称“循环”暗示了实现细节,但是嘿。标准库和类似库中的许多数据结构的名称有点令人困惑

关于c++ - 如何告诉 Boost 循环缓冲区的当前 'write position' 以启用访问以前存储的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31170895/

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