Uses of Interface
cc.mallet.util.search.QueueElement
-
Packages that use QueueElement Package Description cc.mallet.util.search -
-
Uses of QueueElement in cc.mallet.util.search
Classes in cc.mallet.util.search that implement QueueElement Modifier and Type Class Description class
AStarNode
Created by IntelliJ IDEA.class
SearchNode
Created by IntelliJ IDEA.Methods in cc.mallet.util.search that return QueueElement Modifier and Type Method Description 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 Modifier and Type Method Description void
MinHeap. changePriority(QueueElement e, double priority)
void
PriorityQueue. changePriority(QueueElement e, double priority)
Change the priority of queue elemente
topriority
.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 elemente
into the queue.
-