Remove() public method

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