问题描述
我想要做什么:我想对 2、3 或 N 个向量进行排序,锁定在一起,不将它们复制到一个元组中.也就是说,把冗长放在一边,比如:
What I want to do: I want to sort 2, or 3, or N vectors, locked together, without copying them into a tuple. That is, leaving verbosity aside, something like:
这应该输出:
我现在的做法:我已经实现了我自己的快速排序,其中我传递的第一个数组用于比较,并且排列应用于所有其他数组.我只是不知道如何重用 std::sort 来解决我的问题(例如提取排列).
How I am doing it right now: I have implemented my own quicksort, where the first array I pass is used for the comparison, and the permutations are applied to all other arrays. I just couldn't figure out how to reuse std::sort for my problem (e.g. extract permutations).
我尝试过的: boost::zip_iterator 和 boost::zip_range(带有 boost::combine 范围),但 std::sort 和 boost::range::algorithm::sort 抱怨迭代器/范围是只读的,而不是随机访问......
What I've tryed: boost::zip_iterator and boost::zip_range (with boost::combine range), but both std::sort and boost::range::algorithm::sort complain that the iterators/ranges are read only and not random access...
问题: 如何在锁步(压缩)中对 N 个向量进行排序?这个问题看起来非常普遍和常见,所以我想通过一个可能非常复杂的库必须有一个简单的解决方案,但我找不到它......
Question: How do I sort N vectors in lock step (zipped)? The problem looks pretty generic and common so I guess there must be an easy solution through a probably very complex library but I just can't find it...
备注: 是的,stackoverflow 中也有类似的问题,这个问题以不同的形式被问到很多.但是,它们总是以以下答案之一关闭:
Remarks: yes, there are similar questions in stackoverflow, this question gets asked a lot in different forms. However they are always closed with one of the following answers:
- 将您的向量复制到一对/元组中并对该元组进行排序...
- 将您的向量复制到一个结构中,每个向量有一个成员,并对结构向量进行排序...
- 针对您的特定问题实现您自己的排序功能...
- 使用辅助索引数组...
- 使用 boost::zip_iterator 不带示例或带有产生不良结果的示例.
提示:
- 我在 boost 邮件列表 指向 Anthony Williams 的这篇论文.虽然这似乎只适用于成对,但他们也讨论了 TupleIteratorType,但我找不到它.
- user673679 找到了 这篇 帖子包含一个很好的解决方案,适用于两个容器的情况.它还确定了问题(重点是我的):
- I've found this thread in the boost mailing list which points to this paper from Anthony Williams. Although this seems to only work for pairs, they also discus a TupleIteratorType but I haven't been able to find it.
- user673679 found this post containing a nice solution for the two container case. It also nails down the problem (the emphasis is mine):
[...] 根本问题是对"数组引用的行为不像它们应该的那样 [...] 我只是决定滥用迭代器的符号并编写一些有效的东西.这实际上涉及编写一个不符合规范的迭代器,其中值类型的引用与引用类型不同.
[...] the fundamental problem is that "pairs" of array references do not behave like they should [...] I simply decided to abuse the notation of an iterator and write something that works. This involved writing, effectively, a non-conforming iterator where the reference of the value type is not the same as the reference type.
答案:见下面 interjay 的评论(这也部分回答了未来的问题):
未来问题:上一个答案适用于序列容器.我们能否让它也适用于 sortable 容器(例如序列和列表)?这将需要 random_access 和双向 TupleIterator 以及适用于双向迭代器的排序算法.
Future question: the previous answer works for sequence containers. Could we get it also to work on sortable containers (e.g. sequences and lists)? This would require random_access and bidirectional TupleIterators as well as a sort algorithm that works on bidirectional iterators.
更新:这适用于类似序列的容器的组合.但是,混合列表需要 std::sort 支持双向迭代器(不支持).
Update: this works for combinations of sequence-like containers. However mixing a list would require that std::sort supported BidirectionalIterators (which does not).
推荐答案
这是一个基于 range-v3 的工作示例 已建议标准化的库
Here's a working example based on the range-v3 Library that has been proposed for Standardization
实时示例(需要具有良好 C++14 支持的最新编译器,不是 VS 2015).
Live Example (requires recent compiler with good C++14 support, not VS 2015).
这篇关于使用 boost 或 STL 在 C++ 中对压缩(锁定)容器进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!