Remove() 공개 메소드

public Remove ( ) : PathNode
리턴 PathNode
예제 #1
0
 /** Pop the node with the lowest F score from the heap */
 public PathNode PopNode()
 {
     return(heap.Remove());
 }