如何比较 cpp 中的队列?
我需要比较 10 个队列的大小,并确定在创建普通 if 语句时插入下一个元素的最小大小,这
将需要很多情况
,所以有什么方法可以使用例如队列的队列或数组来做到这一点队列?
笔记 : 我需要根据两种情况下的 2 个不同的事物来比较我的队列 1-基于大小(其中的节点数量) 2-基于其中节点中的数据总数(我有一个单独的函数来计算)
i need to compare the size of 10 queues and determine the least one in size to insert the next element in
creating normal if statements will take A LOT of cases
so is there any way to do it using a queue of queue for example or an array of queues ?
note :
i will need to compare my queues based on 2 separate things in 2 situations
1- based on size ( number of nods in it )
2- based on the total number of the data in the nods in it ( which i have a separate function to calculate )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该考虑使用堆,其中关键是每个队列的大小。
http://en.wikipedia.org/wiki/Heap_%28data_struct%29
You should look into using a heap, where the key is the size of each queue.
http://en.wikipedia.org/wiki/Heap_%28data_structure%29
你可以做类似的事情,
如果它对你来说不够快,你总是可以使用 std::for_each() 和函子在向量中进行搜索。
You could do something like that
If it's not fast enough for you, you could always make your search in the vector with std::for_each() and a functor.
最简单的方法是队列向量。迭代向量以找到条目最少的队列。
The simplest approach is a vector of queues. Iterate through the vector to find the queue with the fewest entries.