Uses of Interface
cc.mallet.util.search.QueueElement

Packages that use QueueElement
cc.mallet.util.search   
 

Uses of QueueElement in cc.mallet.util.search
 

Classes in cc.mallet.util.search that implement QueueElement
 class AStarNode
          Created by IntelliJ IDEA.
 class SearchNode
          Created by IntelliJ IDEA.
 

Methods in cc.mallet.util.search that return QueueElement
 QueueElement MinHeap.extractMin()
           
 QueueElement PriorityQueue.extractMin()
          Remove the top element of the queue.
 QueueElement MinHeap.min()
           
 QueueElement PriorityQueue.min()
          Return the top element of the queue.
 QueueElement[] MinHeap.toArray()
           
 QueueElement[] PriorityQueue.toArray()
          Returns any array containing all of the elements in the queue.
 

Methods in cc.mallet.util.search with parameters of type QueueElement
 void MinHeap.changePriority(QueueElement e, double priority)
           
 void PriorityQueue.changePriority(QueueElement e, double priority)
          Change the priority of queue element e to priority.
 boolean MinHeap.contains(QueueElement e)
           
 boolean PriorityQueue.contains(QueueElement e)
          Does the queue contain an element?
 void MinHeap.insert(QueueElement e)
           
 void PriorityQueue.insert(QueueElement e)
          Insert element e into the queue.