Tagged Questions
The priority-queue tag has no wiki summary.
31
votes
8answers
14k views
Priority queue in .Net
I am looking for a .Net (preferably C#) implementation of a priority queue or heap.
Unless I am looking in the wrong place, there isn't one in the framework. Is anyone aware of a good one, or should ...
29
votes
5answers
41k views
Java: How do I use a PriorityQueue?
How do I get a PriorityQueue to sort on what I want it to sort on?
Added: And is there a difference between the offer and add methods?
21
votes
3answers
475 views
Efficient implementation of binary heaps
I'm looking for information on how to implement binary heaps efficiently. I feel like there should be a nice article somewhere about implementing heaps efficiently, but I haven't found one. In fact ...
12
votes
4answers
3k views
PriorityQueue/Heap Update
Does Java have an easy way to reevaluate a heap once the priority of an object in a PriorityQueue has changed? I can't find any sign of it in Javadoc, but there has to be a way to do it somehow, ...
11
votes
2answers
792 views
Why doesn't the .Net framework have a priority queue class?
There are some threads on Stack Overflow dealing with implementing priority queues in .Net and C#.
My issue is of a more basic nature: Why isn't there a priority queue out of the box in the .Net ...
11
votes
8answers
4k views
A priority queue which allows efficient priority update?
UPDATE: Here's my implementation of Hashed Timing Wheels. Please let me know if you have an idea to improve the performance and concurrency. (20-Jan-2009)
// Sample usage:
public static void ...
10
votes
2answers
224 views
Thread-safe Priority Queue for Delphi?
I'm looking for a priority queue implemented in Delphi that would work well in a multi-threaded environment.
Ideally lock-free, or designed for multi-threaded inserts/deletes with something better ...
9
votes
5answers
628 views
F# priority queue
Does the F# library include a priority queue? Else can someone point to me an implementation of priority queue in F#?
7
votes
3answers
1k views
Is there a heap class in C++ that supports changing the priority of elements other than the head?
I have a priority queue of events, but sometimes the event priorities change, so I'd like to maintain iterators from the event requesters into the heap. If the priority changes, I'd like the heap to ...
6
votes
1answer
144 views
How can I configure std::priority_queue to ignore duplicates?
How can I configure std::priority_queue to ignore duplicates?
When I add a key that is already contained then this new one should be ignored. (In my case, the priority for the old and the new one ...
6
votes
4answers
337 views
Priority Queue with a find function - Fastest Implementation
I am looking at implementing a priority queue with an added requirement, a find/search function which will tell whether an item is anywhere within the queue. So the functions will be: insert, del-min ...
6
votes
5answers
882 views
Efficiency of the STL priority_queue
I have an application (C++) that I think would be well served by an STL priority_queue. The documentation says:
Priority_queue is a container adaptor, meaning that it is implemented on top of ...
6
votes
2answers
1k views
Priority Queues in Java
java.util.PriorityQueue allows a Comparator to be passed at construction time. When inserting elements, they are ordered according to the priority specified by the comparator.
What happens when the ...
6
votes
3answers
1k views
A min-heap with better than O(logn) increase key?
I'm using a priority queue that initially bases the priority of its elements on a heuristic. As elements are dequeued the heuristic is updated and elements currently in the queue may have their keys ...
6
votes
4answers
1k views
How to do an efficient priority update in STL priority_queue?
I have a priority_queue of some object:
typedef priority_queue<Object> Queue;
Queue queue;
From time to time, the priority of one of the objects may change - I need to be able to update the ...
5
votes
2answers
82 views
Java : Priority Queue
I have a java program which goes like this
public class PriorityQueueExample {
public static void main(String[] args) {
PriorityQueue<Integer> pq = new PriorityQueue<Integer>();
...
5
votes
2answers
111 views
When does a std::priority_queue<> sort itself?
I was wondering when the C++ STL priority_queue sorts itself. I mean does it insert it into a correct place when you push the item in, or does it sort itself and give you the item of highest priority ...
5
votes
5answers
785 views
C++ priority_queue underlying vector container capacity resize
I'm using priority_queue with a vector as an underlying container. However I expect the size of the heap to be very large. I'm aware of problems with dynamic vector capacity resize. So I'm looking for ...
5
votes
7answers
1k views
priority queue with limited space: looking for a good algorithm
This is not a homework.
I'm using a small "priority queue" (implemented as array at the moment) for storing last N items with smallest value. This is a bit slow - O(N) item insertion time. Current ...
5
votes
6answers
736 views
Priority queue structure used?
While searching for some functions in C++ standard library documentation I read that push and pop for priority queues needs constant time.
...
5
votes
5answers
255 views
Which data structure(s) to back a Final Fantasy ATB-style queue? (a delay queue)
Situation: There are several entities in a simulated environment, which has an artificial notion of time called "ticks", which has no link to real time. Each entity takes it in turns to move, but some ...
5
votes
7answers
2k views
Bounded PriorityBlockingQueue
PriorityBlockingQueue is unbounded, but I need to bound it somehow. What is the best way to achieve that?
For information, the bounded PriorityBlockingQueue will be used in a ThreadPoolExecutor.
NB: ...
5
votes
5answers
2k views
Priority queue with dynamic item priorities
I need to implement a priority queue where the priority of an item in the queue can change and the queue adjusts itself so that items are always removed in the correct order. I have some ideas of how ...
5
votes
2answers
476 views
How to use iterators in java?
I have implemented Priority Queue interface for making heap. Can you tell me how to implement an iterator on the top of that? point me to some apropriate tutorial,i am new to java and on a very short ...
5
votes
6answers
2k views
Java PriorityQueue with fixed size
I am calculating a large number of possible resulting combinations of an algortihm. To sort this combinations I rate them with a double value und store them in PriorityQueue. Currently, there are ...
5
votes
2answers
872 views
How java priority Queue is suppose to work?
Short story, I'm implementing a graph and now I'm working on the Kruskal, I need a priority queue. My definition of a priority queue is that the element with the smallest key would come first? Is this ...
5
votes
4answers
1k views
concurrent queue - general question (description and usage)
I am having some trouble grasping the idea of a concurrent queue. I understand a queue is a FIFO, or first come first serve, data structure.
Now when we add the concurrency part, which I interpret as ...
5
votes
4answers
4k views
How to implement sorting method for a c++ priority_queue with pointers
My priority queue declared as:
std::priority_queue<*MyClass> queue;
class MyClass {
bool operator<( const MyClass* m ) const;
}
is not sorting the items in the queue.
What is wrong? ...
5
votes
2answers
980 views
How do I make a Java class immutable in Clojure?
I'd like to wrap java's PriorityQueue class in clojure for use in another part of my program. What I'm trying to figure out is if there is any way to do this in a lispy manner and make the priority ...
5
votes
7answers
2k views
Working out the SQL to query a priority queue table
I am implementing a small queue to handle which process gets to run first. I am using a table in a database to do this. Here is the structure of the table (I'm mocking it up in SQLite):
...
4
votes
1answer
159 views
BoundedBlockingQueue Java
I am looking for a BoundedBlockingQueue that can take any other Queue and make it bounded and blocking.
I found akka.util.BoundedBlockingQueue which can do that, but the source code has some fixmes ...
4
votes
3answers
295 views
Implement a PriorityQueue using a BinarySearchTree : Java
I need to "create a priority queue implemented by a binary search tree (BST)" for my algorithms II class. However, I'm not sure exactly how you would use a binary search tree as a priority queue. ...
4
votes
1answer
635 views
Does a binary heap support the decrease-key operation?
According to http://en.wikipedia.org/wiki/Heap_%28data_structure%29#Comparison_of_theoretic_bounds_for_variants, it takes Θ(logn) (which translates to O(logn)) to perform the decrease-key operation. ...
4
votes
3answers
194 views
how can I store 3 integer in priority_queue?
I want to store 3 integer in priority_queue. I know how to store 2 integer.
I store 2 integer with pair<int,int>
my code
priority_queue<pair<int,int> , ...
4
votes
2answers
246 views
Free implementation of “bounded priority queue” in C++
I'm looking for a free software implementation of the bounded priority queue abstraction in C++. Basically, I need a data structure that will behave just like std::priority_queue but will at all times ...
4
votes
4answers
539 views
Implementing a priority queue that can be iterated over in C++
I need to implement a priority queue for a project, but the STL's priority_queue is not indicated since we need to iterate over all elements and remove them randomly.
We are thinking about using the ...
4
votes
1answer
325 views
Is there priority queue data structure implementation in ruby standard library?
EDIT:
the answer can be:
sudo gem install algorithms
then:
require 'rubygems'
require 'algorithms'
q1 = Containers::Heap.new
or a bit unusual version:
q2 = Containers::PriorityQueue.new
4
votes
1answer
436 views
std::priority_queue: Custom ordering without defining comparator class
I want to have a priority queue with custom ordering, but lazy as I am, I don't want to define a comparator class implementing operator().
I really would like something like this to compile:
...
4
votes
2answers
255 views
Inserters for STL stack and priority_queue
vector, list, deque have std::back_inserter and set has std::inserter.
For stack and priority_queue I would assume the equivelent inserter would be a push() but I can't seem to find the correct ...
4
votes
3answers
1k views
How to implement PriorityBlockingQueue with ThreadPoolExecutor and custom tasks
I've searched a lot but could not find a solutuion to my problem.
I have my own class, BaseTask, that uses a ThreadPoolExecutor to handle tasks.
If I don't want prioritization (i.e. using a ...
4
votes
8answers
2k views
Java - PriorityQueue vs sorted LinkedList
Which implementation is less "heavy": PriorityQueue or a sorted LinkedList (using a Comparator)?
I want to have all the items sorted. The insertion will be very frequent and ocasionally I will have ...
4
votes
1answer
472 views
Database based Priority Queue
does anyone know of a good database based Priority Queue implementation?
I'm dealing with large amounts of data so keeping it all in memory is unfeasible.
Thanks!
4
votes
1answer
1k views
Getting Message by priority from MSMQ
i am sending messages in MSMQ by setting its priority. using C#
can i get the message from MSMQ having high priority first?
just like we get in Priority Queue.
and one thing more..
suppose there ...
4
votes
4answers
1k views
Erlang: priority receive
Priority receive in Erlang can easily be implemented as follows:
prio() ->
receive
{priority, X} -> X
after 0 ->
receive
X -> X
end
end.
I am reading a ...
3
votes
5answers
40 views
Internal sorting of Priority Queue
I'm not able to understand the internal sorting that is taking place in this Priority queue :
import java.util.*;
public class TryME {
public static void main(String args[]) {
...
3
votes
2answers
99 views
scala priority queue not ordering properly?
I'm seeing some strange behavior with Scala's collection.mutable.PriorityQueue. I'm performing an external sort and testing it with 1M records. Each time I run the test and verify the results between ...
3
votes
4answers
129 views
Updating a PriorityQueue when iterating it
I need to update some fixed-priority elements in a PriorityQueue based on their ID. I think it's quite a common scenario, here's an example snippet (Android 2.2):
for (Entry e : mEntries) {
if ...
3
votes
3answers
104 views
Replacing imperative PriorityQueue in my algorithm
I currently have a method that uses a scala.collection.mutable.PriorityQueue to combine elements in a certain order. For instance the code looks a bit like this:
def process[A : Ordering](as: ...
3
votes
4answers
343 views
How to compare generic nodes in a linked list using Comparable?
I am implementing a sorted list using linked lists. My node class looks like this
public class Node<E>{
E elem;
Node<E> next, previous;
}
In the sorted list class I have the add ...
3
votes
2answers
146 views
Is there a Python data structure which is sortable and searchable?
I'm using python to manage a queue of strings to process. It has a couple of requirments:
Each string is matched to a priority and is processed based solely on that value.
Strings can be added to ...