public class AStarShortestPath<V,E> extends Object
getShortestPath(Object,
Object, AStarAdmissibleHeuristic)
getShortestPath} method; no new instance
of this class has to be created. The heuristic is implemented using a
FibonacciHeap data structure to maintain the set of open nodes. However,
there still exist several approaches in literature to improve the performance
of this heuristic which one could consider to implement. Another issue to
take into consideration is the following: given to candidate nodes, i, j to
expand, where f(i)=f(j), g(i)>g(j), h(i)<g(j), f(i)=g(i)+h(i), g(i) is
the actual distance from the source node to i, h(i) is the estimated distance
from i to the target node. Usually a depth-first search is desired, so
ideally we would expand node i first. Using the FibonacciHeap, this is not
necessarily the case though. This could be improved in a later version.Modifier and Type | Field and Description |
---|---|
protected AStarAdmissibleHeuristic<V> |
admissibleHeuristic |
protected Map<V,E> |
cameFrom |
protected Set<V> |
closedList |
protected Map<V,Double> |
gScoreMap |
protected int |
numberOfExpandedNodes |
protected FibonacciHeap<V> |
openList |
protected Map<V,FibonacciHeapNode<V>> |
vertexToHeapNodeMap |
Constructor and Description |
---|
AStarShortestPath(Graph<V,E> graph) |
Modifier and Type | Method and Description |
---|---|
int |
getNumberOfExpandedNodes()
Returns how many nodes have been expanded in the A* search procedure in
its last invocation.
|
GraphPath<V,E> |
getShortestPath(V sourceVertex,
V targetVertex,
AStarAdmissibleHeuristic<V> admissibleHeuristic)
Calculates (and returns) the shortest path from the sourceVertex to the
targetVertex.
|
protected FibonacciHeap<V> openList
protected Map<V,FibonacciHeapNode<V>> vertexToHeapNodeMap
protected AStarAdmissibleHeuristic<V> admissibleHeuristic
protected int numberOfExpandedNodes
public GraphPath<V,E> getShortestPath(V sourceVertex, V targetVertex, AStarAdmissibleHeuristic<V> admissibleHeuristic)
sourceVertex
- source vertextargetVertex
- target vertexadmissibleHeuristic
- admissible heuristic which estimates the
distance from a node to the target node.public int getNumberOfExpandedNodes()
Copyright © 2016. All rights reserved.