Valhalla Legends Archive

Programming => General Programming => Java Programming => Topic started by: TooTallDawg on July 17, 2006, 10:54 AM

Title: PriorityQueue
Post by: TooTallDawg on July 17, 2006, 10:54 AM
can someone give me a simple explaination  of what a PriorityQueue actually does? 
Title: Re: PriorityQueue
Post by: warz on July 17, 2006, 11:51 AM
Well, in C++, the std priority queue (http://www.cs.odu.edu/~zeil/cs361/Lectures-f02/12heaps/heap/page1.html) allows you to add things to the list of items with a certain level of importance, or priority. Items with the most priority appear at the beginning of the list, items with less priority appear after the more important ones. It's a pretty simple concept.
Title: Re: PriorityQueue
Post by: MyndFyre on July 17, 2006, 03:09 PM
A queue is a first-in-first-out data structure.  That means that the first object put into it is the first object taken out of it.

A priority queue is a modification of a queue in which higher priority items are removed first.
Title: Re: PriorityQueue
Post by: Banana fanna fo fanna on October 18, 2006, 09:18 PM
yallz gotta get one of dem O(log n) heaps up in hurrrrrrrrrrrrrrrrrrr