A priority queue is a regular queue or stack data structure, but where additionally each element has a "priority" associated with it.

learn more… | top users | synonyms

0
votes
0answers
9 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 ...
0
votes
0answers
7 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
14 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
29 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
39 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
23 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
68 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
22 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
77 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
28 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
30 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
vote
0answers
13 views

Prioritize publications in Tridion 2009 SP1 [migrated]

Currently, whenever we publish a content file along with all the child publications, all the child publications get published in a random order. Is there a way I can configure the publication Target ...
-1
votes
1answer
48 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
50 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
53 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
50 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
36 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 = ...
-1
votes
0answers
25 views

Implementing Priority queues Java

Hi guys i have problem with my code.When i debug it i saw there NullPointerException on variable zac and kon .I dont know what is bad in my code . Here is my method called zaradKamParti(Polozka ...
0
votes
0answers
41 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
33 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
31 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, ...
0
votes
1answer
46 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
50 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
57 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
154 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
97 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 ...
-1
votes
2answers
46 views

How to do a simple circular queue of threads

I would like to make two classes. One (class Mover) is changing the fields that other(class Window) is using to repaint something every 1/30 seconds. I would like to make them work ...
-1
votes
1answer
21 views

how to initialize PriorityQueue

I'm reading the API http://docs.oracle.com/javase/6/docs/api/java/util/PriorityQueue.html. I'm still a bit lost. Which is the right way to initialize? PriorityQueue(Caller caller_pq); or static ...
1
vote
1answer
25 views

Priority Queue object comparator with hashset object

HashSet Object ct_set City Object how can i initialize a ProrityQueue object ct_pq with elements in ct_set with order from my populatation comparator
0
votes
2answers
40 views

reading highest priority child from list in Firebase

I want to get the child with the highest priority in a Firebase's list, how do I do so without having to keep all the children at the client? One way I could think of is to maintain a linked-list ...
0
votes
0answers
57 views

Priority Queue for Huffman Encoding

I am trying to Huffman Encode and String. To do this I First store the frequency of each character in an array that looks something like this:A["Ascii value of the character"]= frequency of the ...
0
votes
0answers
33 views

Can Priority Queues have empty elements (like arrays)?

Hi I am writing an algorithm in algorithm design language for a mock test, for adding an element to a priority-queue. Now I plan to do this by using the general method of inserting an element into a ...
7
votes
2answers
159 views

Scala's TreeSet vs Java's TreeSet - poll?

If I want to remove the highest entry in log(n) time in Java's TreeSet, I use treeSet.pollFirst() - what is the equivalent for Scala's mutable.TreeSet class? Anyway, what I really want is a heap-like ...
1
vote
1answer
55 views

Serializing a priority queue in scala

I am trying to serialize a mutable PriorityQueue in scala (2.10) and am getting a NotSerializableException when writing the object to an ObjectOutputStream. I made a simple test case: import ...
3
votes
3answers
89 views

Java: Priority Queue implementation iterable in proper order

I'm looking for some implementation of PQ in Java which allows iteration in PQ order - top element first, next one next etc. I tried using TreeSet (which implements NavigableSet) but it causes one ...
0
votes
2answers
63 views

PriorityQueue has objects with the same priority

I'm using a priority queue to sort and use a large number of custom objects. The objects have a "weight" that is their natural ordering. However, different objects that are inserted into the priority ...
0
votes
3answers
71 views

How to avoid deleting priority_queue::top() despite a pop()?

The interface of STL and boost priority queues includes T const & top () const; void pop (); The latter deletes the top element. But what if I want to keep using that element after I ...
1
vote
1answer
46 views

Overwrite elements at end of priority queue once specified capacity is met?

I'm trying to search for the nearest N points in a quad tree and using an STL priority queue to store the points as they are found (sorted by distance from the query point). Points exceeding a max ...
0
votes
1answer
36 views

Priority_queue problems Memory access

I am having some issues with my code. It seems I cannot access a top of a priority queue only in a specific function. I get this error : Unhandled exception at at 0x77644B32 in ...
1
vote
1answer
81 views

how to change the value of std::priority_queue top()?

When using std::priority_queue top() it returns a constant reference. So is there a way I can both take advantage of std::priority_queue and change the value of top()?
0
votes
1answer
46 views

Should I use Power Collection's OrderedMultiDictionary as a priority queue?

C# does not provide a native implementation of a priority queue. On Stackoverflow, a common answer to this kind of problem is to use the Power Collections. Should I go ahead with that, or are there ...
0
votes
1answer
108 views

Separate chaining with priority queue (using std::map)

I just start learning hash table and while trying with std::map I come up with this question: when using separate chaining method to solve collision, can I use std:: priority_queue instead of just ...
0
votes
3answers
92 views

priority queue error

I am having trouble, Whenever I try to compile this program I get an error in the contains function where it says q.pop. If that line is commented out it will compile fine, but it stills gives the ...
0
votes
0answers
26 views

Implementing the PriorityQueue class?

I have to complete an implementation of PriorityQueue.java and I don't know what it really mean to change it. It won't compiled and I'm not quite sure what the task is too. Any help would be ...
0
votes
2answers
137 views

Priority queue in reverse order

This site suggests that if I want to reverse-order my priority queues, the following code is what I should use: #include <iostream> #include <queue> using namespace std; class ...
0
votes
1answer
110 views

Priority Queue of Nodes [duplicate]

I've created a priority queue of Nodes, I've 'pushed' the node into the queue, with the assumption that it will sort the nodes in the order of the integer values. I guess I was wrong. The node has the ...
4
votes
2answers
170 views

STL priority queue and overloading with pointers

This is my first time using a priority queue. I'm trying to implement Dijkstra's algorithm for school and I figured I need a min heap to do this. Right now my nodes are pointers and I want to compare ...
0
votes
3answers
49 views

How can I create Min stl priority_queue of node structure type

struct node { node *right; node *left; int data; }; This is my struct node. Now I am using stl priority queue in order to extract min i.e the minimum from the priority queue like this ...
1
vote
2answers
31 views

On sorting of Java's Priority Queue, clarification needed

Please help me understand something I am starting with a private Queue<SomeEvent> future = new PriorityQueue(CAPACITY, new SomeEventComparatorByTime()); I then add 5 events (from ...

1 2 3 4 5 11