0
votes
1answer
50 views
Running time of minimum spanning tree? ( Prim method )
I have written a code that solves MST using Prim method. I read that this kind of implementation(using priority queue) should have O(E + VlogV) = O(VlogV) where E is the number of …
1
vote
1answer
52 views
Database based Priority Queue
Hi, 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!
0
votes
2answers
59 views
Java: Access local variables from anon inner class? (PriorityQueue)
I want to use a PriorityQueue to do a topological sort on a graph. For brevity, I'd like to use an anonymous inner class for the comparator. However, I need access to the graph g i …
1
vote
5answers
360 views
Scala: Is there a way to use PriorityQueue like I would in Java?
I have a class that I would like to use in a scala.collection.mutable.PriorityQueue, but I don't want to make it Ordered[A] just for this one purpose. I don't consider the orderin …
0
votes
2answers
58 views
How do I best prioritize HTTP requests on a web page?
I need to prioritize the downloading of (in my case) images.
To do this I would prefer to use some kind of plugin (preferably for jQuery) that lets me do this without having to bu …
1
vote
3answers
72 views
Implementing a Priority queue with a Conditional Variable in C
My current understanding of conditional variables is that all blocked (waiting) threads are inserted into a basic FIFO queue, the first item of which is awakened when signal() is c …
0
votes
2answers
57 views
Problem with priority_queue - Writing memory after heap
Hello again,
I am trying to use priority_queue, and program constantly fails with error message HEAP CORRUPTION DETECTED.
here are the snippets:
class CQueue { ...
…
0
votes
3answers
76 views
Java: Design Question - minimal pairs between sets
I have two sets of Animal objects. The distance between animals is defined using a specific algorithm that looks at their traits. I am trying to design a method to find the pair fr …
2
votes
2answers
94 views
Priority Queue in .Net
This question is similar, but i want to exactly know:
Is there any class/struct/... in .Net for priority queue? Just like in STL that have priority_queue for this. It accepts a …
3
votes
4answers
148 views
concurrent queue - general question (description and usage)
Hello,
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 concurrenc …
1
vote
2answers
234 views
STL Priority Queue on custom class
I'm having a lot of trouble getting my priority queue to recognize which parameter it should sort by. I've overloaded the less than operator in my custom class but it doesn't seem …
1
vote
2answers
163 views
position index for binary heap priority queues?
So let's say I have a priority queue of N items with priorities, where N is in the thousands, using a priority queue implemented with a binary heap. I understand the EXTRACT-MIN an …
1
vote
1answer
260 views
Priority queue in Java?
Is it possible in Java to create a PriorityQueue of objects where the key that decides the priority is the member of the object?
All the examples I see on net insert an integer in …
1
vote
4answers
305 views
Java - Looking for something faster than PriorityQueue
Hi,
i'm using java on a big amount of data.
[i try to simplify the problem as much as possible]
Actually i have a small class (Element) containing an int KEY and a double WEIGH …
1
vote
1answer
112 views
Getting Message by priority from MSMQ
hi.
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 thi …
