作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一组数据,我想找到最大和最小的项目(多次),最好的方法是什么?
对于任何对该应用程序感兴趣的人,我正在开发一个细节系统,我需要找到具有最大和最小屏幕空间错误的项目,显然每次我分割/合并一个项目时我都必须将它插入到队列,但每次相机移动整个数据集都会发生变化 - 因此最好只使用排序列表并推迟添加新项目,直到我下次排序(因为它经常发生)
最佳答案
您可以按照论文 Min-Max Heaps and Generalized Priority Queues 中的描述使用最小-最大堆:
A simple implementation of double ended priority queues is presented. The proposed structure, called a min-max heap, can be built in linear time; in contrast to conventional heaps, it allows both FindMin and FindMax to be performed in constant time; Insert, DeleteMin, and DeleteMax operations can be performed in logarithmic time.
关于c# - 双端优先队列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1068614/
我是一名优秀的程序员,十分优秀!