[−][src]Struct priority_queue::PriorityQueue
A priority queue with efficient change function to change the priority of an element.
The priority is of type P, that must implement std::cmp::Ord
.
The item is of type I, that must implement Hash
and Eq
.
Implemented as a heap of indexes, stores the items inside an IndexMap
to be able to retrieve them quickly.
Methods
impl<I, P> PriorityQueue<I, P> where
P: Ord,
I: Hash + Eq,
[src]
P: Ord,
I: Hash + Eq,
pub fn new() -> PriorityQueue<I, P>
[src]
Creates an empty PriorityQueue
pub fn with_capacity(capacity: usize) -> PriorityQueue<I, P>
[src]
Creates an empty PriorityQueue
with the specified capacity.
The internal collections will be able to hold at least capacity
elements without reallocating.
If capacity
is 0, there will be no allocation.
pub fn iter(&self) -> Iter<I, P>
[src]
Returns an iterator in arbitrary order over the (item, priority) elements in the queue
pub fn iter_mut(&mut self) -> IterMut<I, P>
[src]
Return n iterator in arbitrary order over the (item, priority) elements in the queue.
The item and the priority are mutable references, but it's a logic error
to modify the item in a way that change the result of Hash
or Eq
.
It's not an error, instead, to modify the priorities, because the heap
will be rebuilt once the IterMut
goes out of scope. It would be
rebuilt even if no priority value would have been modified, but the
procedure will not move anything, but just compare the priorities.
pub fn peek(&self) -> Option<(&I, &P)>
[src]
Returns the couple (item, priority) with the greatest priority in the queue, or None if it is empty.
Computes in O(1) time
pub fn peek_mut(&mut self) -> Option<(&mut I, &P)>
[src]
Returns the couple (item, priority) with the greatest priority in the queue, or None if it is empty.
The item is a mutable reference, but it's a logic error to modify it
in a way that change the result of Hash
or Eq
.
The priority cannot be modified with a call to this function.
To modify the priority use push
, change_priority
or
change_priority_by
.
Computes in O(1) time
pub fn capacity(&self) -> usize
[src]
Returns the number of elements the internal map can hold without reallocating.
This number is a lower bound; the map might be able to hold more, but is guaranteed to be able to hold at least this many.
pub fn reserve(&mut self, additional: usize)
[src]
Reserves capacity for at least additional
more elements to be inserted
in the given PriorityQueue
. The collection may reserve more space to avoid
frequent reallocations. After calling reserve
, capacity will be
greater than or equal to self.len() + additional
. Does nothing if
capacity is already sufficient.
Panics
Panics if the new capacity overflows usize
.
pub fn shrink_to_fit(&mut self)
[src]
Shrinks the capacity of the internal data structures that support this operation as much as possible.
pub fn pop(&mut self) -> Option<(I, P)>
[src]
Removes the item with the greatest priority from the priority queue and returns the pair (item, priority), or None if the queue is empty.
pub fn push(&mut self, item: I, priority: P) -> Option<P>
[src]
Insert the item-priority pair into the queue.
If an element equals to item
was already into the queue,
it is updated and the old value of its priority returned in Some
;
otherwise, return None
.
Computes in O(log(N)) time.
pub fn change_priority<Q: ?Sized>(
&mut self,
item: &Q,
new_priority: P
) -> Option<P> where
I: Borrow<Q>,
Q: Eq + Hash,
[src]
&mut self,
item: &Q,
new_priority: P
) -> Option<P> where
I: Borrow<Q>,
Q: Eq + Hash,
Change the priority of an Item returning the old value of priority,
or None
if the item wasn't in the queue.
The argument item
is only used for lookup, and is not used to overwrite the item's data
in the priority queue.
The item is found in O(1) thanks to the hash table. The operation is performed in O(log(N)) time.
pub fn change_priority_by<Q: ?Sized, F>(&mut self, item: &Q, priority_setter: F) where
I: Borrow<Q>,
Q: Eq + Hash,
F: FnOnce(P) -> P,
[src]
I: Borrow<Q>,
Q: Eq + Hash,
F: FnOnce(P) -> P,
Change the priority of an Item using the provided function. The item is found in O(1) thanks to the hash table. The operation is performed in O(log(N)) time (worst case).
pub fn get_priority<Q: ?Sized>(&self, item: &Q) -> Option<&P> where
I: Borrow<Q>,
Q: Eq + Hash,
[src]
I: Borrow<Q>,
Q: Eq + Hash,
Get the priority of an item, or None
, if the item is not in the queue
pub fn get<Q>(&self, item: &Q) -> Option<(&I, &P)> where
I: Borrow<Q>,
Q: Eq + Hash,
[src]
I: Borrow<Q>,
Q: Eq + Hash,
Get the couple (item, priority) of an arbitrary element, as reference
or None
if the item is not in the queue.
pub fn get_mut<Q>(&mut self, item: &Q) -> Option<(&mut I, &P)> where
I: Borrow<Q>,
Q: Eq + Hash,
[src]
I: Borrow<Q>,
Q: Eq + Hash,
Get the couple (item, priority) of an arbitrary element, or None
if the item was not in the queue.
The item is a mutable reference, but it's a logic error to modify it
in a way that change the result of Hash
or Eq
.
The priority cannot be modified with a call to this function.
To modify the priority use push
, change_priority
or
change_priority_by
.
pub fn into_vec(self) -> Vec<I>
[src]
Returns the items not ordered
pub fn into_sorted_vec(self) -> Vec<I>
[src]
Implements a HeapSort
pub fn len(&self) -> usize
[src]
Returns the number of elements in the priority queue.
pub fn is_empty(&self) -> bool
[src]
Returns true if the priority queue contains no elements.
pub fn clear(&mut self)
[src]
Drops all items from the priority queue
pub fn append(&mut self, other: &mut Self)
[src]
Move all items of the other
queue to self
ignoring the items Eq to elements already in self
At the end, other
will be empty.
Note that at the end, the priority of the duplicated elements inside self may be the one of the elements in other, if other is longer than self
pub fn into_sorted_iter(self) -> IntoSortedIter<I, P>
[src]
Generates a new iterator from self that will extract the elements from the one with the highest priority to the lowest one.
Trait Implementations
impl<I: Clone, P: Clone> Clone for PriorityQueue<I, P> where
I: Hash + Eq,
P: Ord,
[src]
I: Hash + Eq,
P: Ord,
fn clone(&self) -> PriorityQueue<I, P>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<I, P1, P2> PartialEq<PriorityQueue<I, P2>> for PriorityQueue<I, P1> where
I: Hash + Eq,
P1: Ord,
P1: PartialEq<P2>,
Option<P1>: PartialEq<Option<P2>>,
P2: Ord,
[src]
I: Hash + Eq,
P1: Ord,
P1: PartialEq<P2>,
Option<P1>: PartialEq<Option<P2>>,
P2: Ord,
fn eq(&self, other: &PriorityQueue<I, P2>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<I: Eq, P: Eq> Eq for PriorityQueue<I, P> where
I: Hash + Eq,
P: Ord,
[src]
I: Hash + Eq,
P: Ord,
impl<I, P> IntoIterator for PriorityQueue<I, P> where
I: Hash + Eq,
P: Ord,
[src]
I: Hash + Eq,
P: Ord,
type Item = (I, P)
The type of the elements being iterated over.
type IntoIter = IntoIter<I, P>
Which kind of iterator are we turning this into?
fn into_iter(self) -> IntoIter<I, P>
[src]
impl<'a, I, P> IntoIterator for &'a PriorityQueue<I, P> where
I: Hash + Eq,
P: Ord,
[src]
I: Hash + Eq,
P: Ord,
type Item = (&'a I, &'a P)
The type of the elements being iterated over.
type IntoIter = Iter<'a, I, P>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Iter<'a, I, P>
[src]
impl<'a, I, P> IntoIterator for &'a mut PriorityQueue<I, P> where
I: Hash + Eq,
P: Ord,
[src]
I: Hash + Eq,
P: Ord,
type Item = (&'a mut I, &'a mut P)
The type of the elements being iterated over.
type IntoIter = IterMut<'a, I, P>
Which kind of iterator are we turning this into?
fn into_iter(self) -> IterMut<'a, I, P>
[src]
impl<I, P> From<Vec<(I, P)>> for PriorityQueue<I, P> where
I: Hash + Eq,
P: Ord,
[src]
I: Hash + Eq,
P: Ord,
impl<I: Hash + Eq, P: Ord> Default for PriorityQueue<I, P>
[src]
impl<I, P> Extend<(I, P)> for PriorityQueue<I, P> where
I: Hash + Eq,
P: Ord,
[src]
I: Hash + Eq,
P: Ord,
fn extend<T: IntoIterator<Item = (I, P)>>(&mut self, iter: T)
[src]
impl<I, P> FromIterator<(I, P)> for PriorityQueue<I, P> where
I: Hash + Eq,
P: Ord,
[src]
I: Hash + Eq,
P: Ord,
fn from_iter<IT>(iter: IT) -> PriorityQueue<I, P> where
IT: IntoIterator<Item = (I, P)>,
[src]
IT: IntoIterator<Item = (I, P)>,
impl<I, P> Debug for PriorityQueue<I, P> where
I: Debug + Hash + Eq,
P: Debug + Ord,
[src]
I: Debug + Hash + Eq,
P: Debug + Ord,
Auto Trait Implementations
impl<I, P> Send for PriorityQueue<I, P> where
I: Send,
P: Send,
I: Send,
P: Send,
impl<I, P> Sync for PriorityQueue<I, P> where
I: Sync,
P: Sync,
I: Sync,
P: Sync,
Blanket Implementations
impl<I> IntoIterator for I where
I: Iterator,
[src]
I: Iterator,
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<Q, K> Equivalent for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,