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 classAStarNodeCreated by IntelliJ IDEA.classSearchNodeCreated by IntelliJ IDEA.Methods in cc.mallet.util.search that return QueueElement Modifier and Type Method Description QueueElementMinHeap. extractMin()QueueElementPriorityQueue. extractMin()Remove the top element of the queue.QueueElementMinHeap. min()QueueElementPriorityQueue. 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 voidMinHeap. changePriority(QueueElement e, double priority)voidPriorityQueue. changePriority(QueueElement e, double priority)Change the priority of queue elementetopriority.booleanMinHeap. contains(QueueElement e)booleanPriorityQueue. contains(QueueElement e)Does the queue contain an element?voidMinHeap. insert(QueueElement e)voidPriorityQueue. insert(QueueElement e)Insert elementeinto the queue.
-