Original Post
I implemented A* based on the wikipedia.org article. It states: "This path reconstruction from the stored closed nodes (see below) means it is not necessary to store the path-so-far within each node." But below that line there is no mention of how to reconstruct the path. So how do I reconstruct the path from the 'closed' priority queue without storing the path so far in each node?