Remove() public méthode

public Remove ( ) : PathNode
Résultat PathNode
Exemple #1
0
 /** Pop the node with the lowest F score from the heap */
 public PathNode PopNode()
 {
     return(heap.Remove());
 }