多重集到向量,C++

发布于 2024-11-05 01:45:59 字数 62 浏览 0 评论 0原文

如何尽可能快地将最后 k 个项目以相反的顺序从 std::multiset 复制到 std::vector ?

How to copy last k items from std::multiset in reversed order to std::vector as fast as possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

打小就很酷 2024-11-12 01:45:59

如果您使用非标准 copy_n (您可以轻松自己动手),您可以这样做:

std::copy_n(your_multiset.rbegin(), k, std::back_inserter(your_vector));

copy_n 是 C++ 的一部分1x,所以这个解决方案是完全标准的。如果您想要速度,提前在向量中预留空间以节省重新分配可能会更快。

If you use the non-standard copy_n (you can easily roll your own), you can just do this:

std::copy_n(your_multiset.rbegin(), k, std::back_inserter(your_vector));

copy_n is part of C++1x, so there this solution is fully standard. If you want speed, it might be faster to reserve space in the vector in advance to save reallocations.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文