A priority queue is a regular queue or stack data structure, but where additionally each element has a "priority" associated with it.
0
votes
1answer
96 views
expected an identifier c++
I am trying to write a class and I finally got it to compile, but visual studio still shows there are errors (with a red line).
The problem is at (I wrote @problem here@ around the places where ...
2
votes
3answers
61 views
Function for priority queue in ocaml
Is there a library in ocaml with wich I could make a priority queue and handle it?
I have checked this "http://holgerarnold.net/software/ocaml/doc/base/PriorityQueue.Make.html"
but it does not have ...
0
votes
0answers
34 views
How to implement O(logn) decrease-key operation for min-heap based Priority Queue?
I am working on an application that demonstrates the Djikstra Algorithm and to use it I need to restore the heap property when my elements' value is decreased.
The problem regarding the complexity is ...
7
votes
1answer
219 views
camera intent and priority queue in Android
I am currently writing an Android app (API level 2.3.3) that involves taking the 300 highest grayscale values from a photo taken via camera intent. Following, functions (mainly maths and some ...
0
votes
4answers
45 views
STL iterable container like priority_queue
I'm new to STL containers (and C++ in general) so thought I would reach out to the community for help. I basically want to have a priority_queue that supports constant iteration. Now, it seems that ...
0
votes
1answer
21 views
Priority Queue Sorting in C#
I need to create a Priority Queue that sorts a series of "Characters" based on one of their parameters. The Character constructor in the Character class is as such:
public Character(string n, string ...
2
votes
1answer
63 views
Java Priority Queue Not Sorting Properly
I am trying to implement a priority queue of my class type BBNode, but it doesn't seem to sift up the new nodes the way I expect it. Rather than have the smallest be at the head of the queue (how it ...
0
votes
1answer
30 views
Detemining queue size
I have to implement a queue to which object will be added and removed by two different threads at different time based on some factor.My problem is the requirement says the queue( whole queue and data ...
-2
votes
1answer
85 views
C++ Priority Queue with all data types [closed]
We have to make a Priority Queue in C++. which should be able to handle all data types using a template. How should we go about doing this? P.s. We only started learning C++ 2 months ago after using ...
1
vote
2answers
47 views
Testing PriorityBlockingQueue in ThreadPoolExecutor
I realized my ThreadPoolExecutor with PriorityBlockingQueue like in this example:
http://stackoverflow.com/a/12722648/2206775
and wrote a test:
PriorityExecutor executorService = (PriorityExecutor) ...
0
votes
1answer
25 views
Priority Queues sorting all items but the last
/* INPUT
Greenland
Denmark
Iceland
Finland
Sweden
Norway
*/
This part returns everything needed. I get them all except the last.
public void insert(Country item){
System.out.println("Item ...
0
votes
1answer
33 views
segmentation fault core dumped in pqueue heap based before dequeuing caused only by very large random inputs
Hello I am following CS106b programming abstractions from Stanford which is a programing course taught in c++ and in the PQueue assignment (priority queue )( the heap based implementation) I have ...
7
votes
1answer
100 views
Is there a Fibonacci heap based priority queue for Haskell?
Is there a Fibonacci heap/priority queue available for Haskell? (Or even an asymptotically better one?) I found a list of various priority queue implementations in this question, but I couldn't find ...
1
vote
2answers
37 views
Sorted vs. Unsorted Data in a priority queue Why does un sort automatically and sorted wait?
I understand that a min heap is the structure that the class uses because of its efficiency. It seems to me that when unsorted data is given to a PQ it sorts it into a heap.
BUT when it is fed ...
2
votes
1answer
96 views
How to get a non-const top element from priority_queue with user-defined objects?
std::priority_queue::top returns a constant value. However, I would like to remove the top element from the priority queue and be able to modify it somewhere else.
priority_queue<SomeClass, ...
2
votes
1answer
120 views
Prim's Algorithm
I am working on a minimum spanning tree using Prim's Algorithm with PriorityQueue in Java. However, I am getting the totalWeight (the minimum weight of the tree) wrong.
Did I misunderstand the ...
-6
votes
4answers
65 views
How I can find value in priority queue? [closed]
I would like to find a node in my priority queue but I did not find a solution :(
If you have a solution, I'm interested.
Thx for help.
1
vote
3answers
33 views
PriorityQueue retrieve elements sorted
I'd like to have a sorted collection in java that I can iterate over it. From what I read a PriorityQueue is the thing that I need but hen I can't figure out how to retrieve the elements ins a sorted ...
1
vote
1answer
59 views
Inherited classes in a C++11 priority queue
I'm new to OOP in C++ and I'm not sure if this will work but I'd like to have multiple class types in a C++ std priority queue.
I set the classes up so that they all inherit from a base class and ...
-4
votes
0answers
45 views
Priority queue - Aircraft [closed]
Could some one suggest me how can i go ahead implementing this :
Planning to use Java.
Java priority queues and comparators.
A software subsystem of an air-traffic control system is defined to manage ...
0
votes
1answer
17 views
poll() return type conflict with PriorityBlockingQueue.poll()
In the below poll() method, my IDE is complaining about the fact that it returns JobSet. Tooltip reads: poll() in my.package.JobSetQueue clashes with poll() in ...
1
vote
1answer
75 views
Getting a unique_ptr out of a priority queue
I am maintaining a set of unique_ptr instances in a priority_queue. At some point, I want to get the first element and remove it from the queue. However, this always produces a compiler error. See ...
1
vote
1answer
27 views
Android: Change priority of other applications
My question is simple, Can I change priorities of other applications from my application ?
A possible attempt could be using
Intent intent = new Intent("android.provider.Telephony.SMS_RECEIVED");
...
0
votes
1answer
172 views
Turning a tree into a heap in haskell
I need to make an implementation of a priority queue with a Heap Tree in Haskell, for example:
Given a list: [3,2,7,8,4,1,9]
3 is the main root
2 is its left leaf
7 is its right leaf
8 is the left ...
1
vote
2answers
25 views
Using less Timers
It doesn't really lag that much in my game but I know that I could reduce a lot of lag in my game by having less Timer's running. The game have multiple Timer's because it have one Timer that updates ...
-1
votes
0answers
26 views
Red-Blcak tree implementation of WEIRDFN on SPOJ giving TLE
I implemented WEIRDFN on SPOJ link(http://www.spoj.com/problems/WEIRDFN/) using red-black trees which is much similar to Codechef problem RRATING which got AC using same implementation . How much ...
0
votes
1answer
19 views
How to check element exists in SplPriorityQueue?
I've custom SplPriorityQueue.
class Application_Model_Astar_PQtest extends SplPriorityQueue
{
public function compare($priority1, $priority2)
{
if ($priority1 === $priority2) ...
0
votes
1answer
39 views
Priority queue implementation
I was trying to build a priority queue but there seems to be some inconsistency when I tested it. I overrode method compareTo() but somehow it return student with the youngest age. Why is that ? ...
0
votes
2answers
42 views
Errors using the Comparator interface
I am trying to write a simple application with priority queues. I am getting the following errors --" error: leastPriority is not abstract and does not override abstract method ...
1
vote
1answer
29 views
Priority queue implemented with a ConcurrentSkipListMap, unsure how to make consumers block on it
I have a priority queue implemented with a ConcurrentSkipListMap, using 16 different priorities.
class ConcurrentPriorityQueue {
ConcurrentSkipListMap<Long, Message> queue = new ...
1
vote
1answer
126 views
Priority queue/min heap for directed graph with Dijkstra's alg
For an assignment I need to implement Dijkstra's algorithm using a priority queue implemented as a min heap. I already have an implementation in which I use a distance table and an unordered array of ...
0
votes
0answers
55 views
Priority Queues in PHP
I'm trying to create a priority queue using this code and I can't find where the problem is. Someone tell me where I went wrong.
<?php
class PriorityQueue implements Iterator , Countable
{
...
0
votes
1answer
13 views
Priority Queue Contradiction
I need help on just wording this problem. I have the right idea but I need more to make sure I understand the solution.
Lets say your friend claims he invented a super fast comparison based priority ...
1
vote
2answers
90 views
C++ I'm having trouble setting up a priority queue of a class I created
I'm trying to set up a priority queue of a class I created called Event. In the 2 lines before I try this, I have 2 other priority queues set up that seem to work fine but I get an error on the 3rd ...
0
votes
1answer
36 views
comparator of the worst-fit heuristics priority queue
I'm trying to write a bin-packing program using worst-fit heuristic so that the it adds weights into bins until they cannot store any more as they are read by the file and put the sequence of bins ...
0
votes
1answer
32 views
Priority Queue sqaure root run time
I am having a Data Structures Exam and I am preparing from a list of review questions. The question I am stuck on is as follows:
"Suppose your friend comes to you and claims that he has invented a ...
-1
votes
1answer
71 views
Search and Delete Function in Singly priority linked List
I want to perform a search operation in a priority linked list in java, I have already write a search and delete method for that but i am facing difficulties in calling these methods to my main ...
0
votes
2answers
53 views
How to have a collection of integers with adaptive ordering based on past success in C++?
I have a set of integers in C++03, where the integers represent guesses relative to a reference point. The algorithm runs through a long list of items, and for each item, it tries each integer guess ...
2
votes
1answer
100 views
ThreadPoolExecutor backed by PriorityBlockingQueue doesn't seem to work
I have a large number of pictures to fetch from a server, and I want to fetch some pictures with higher priority than others so I've implemented my own ThreadPoolExecutor that returns a FutureTask ...
1
vote
1answer
62 views
compilation error with std::priority_queue derived class using std::shared_ptr
I derived from std::priority_queue to implement a few specialized methods. One of these
methods somekind of a fixed queue when I add an element and the queue is full, the smallest element is dropped ...
0
votes
1answer
45 views
Class derived from std::priority_queue does'nt use comparator predicate / template parameters
I am not very familiar with deriving from templates, see the following:
class BCQueue_;
template<typename T,
typename Sequence = std::vector<T>,
typename Compare = ...
0
votes
0answers
56 views
Priority queue operations causing duplicate elements
I'm using Java's priority queue and my HuffmanTree class extends Java's BinaryTree (I'm using merge from there).
FreqTracker is just a class containing a char, an int, and some getters/a setter.
...
0
votes
0answers
35 views
PriorityQ from array to using a heap
Here's my code for creating a Priority Queue using an array, I was wondering how I could go about using this with a heap instead? Everything needed should be there, it is just set up using an array. I ...
0
votes
2answers
40 views
declaring a priority_queue in c++ with a custom comparator
I'm trying to declare a priority_queue of nodes, using bool Compare(Node a, Node b) as the comparator function (which is outside the node class).
What I currently have is:
priority_queue<Node, ...
1
vote
3answers
50 views
[C++]Memory error thrown at destructor that wasn't there before this code. Trying to make a new dynamic array and populate it
I am working on a lab dealing with queues, which I don't think is entirely relevant. My task is to create a "priority queue" and the best way I could think of to do it is as follows
void ...
0
votes
1answer
60 views
Removing element from priority queue
I'm trying to pass input from a servlet to my backend, and remove object from queue if the information matches.
segment from webpage where user inputs name of project they want to delete
below is ...
1
vote
2answers
54 views
C++ STL Containers. Parametrize a comparer for each different instance
I have a set of n objects representing coordinates in a map, and I want for each one of them to mantain a priority_queue with the k closest to their position.
Problem is priority_queue receives a ...
0
votes
2answers
63 views
Priority Queue cannot be applied to given types
I am new with working with priority queues and have formatted this code wrong, and I want to have my priority be a straight line distance to a city however I don't beleive I passed this information to ...
0
votes
1answer
213 views
Priority queues O(1) insert, delete-min and decrease-key? [closed]
I saw this "Hopeless challenge" about priority queues in an algorithms book :
" O(1) insert, delete-min and decrease-key. Why is it impossible?"
Is it because the only way is to implement it with ...
-1
votes
1answer
120 views
C# priority queue, generic type <T> conversion
public class PriorityQueue<T> : IPriorityQueue<T>
where T : IComparable
So, I've made a priority queue class with the Header above and I'm attempting to use ...

