A* - Keeping track of nodes
#1 Members - Reputation: 178
Posted 01 December 2012 - 04:20 PM
When I look at the neighbours of a given node - in order to check whether or not the g value is an improvement on the current node's g value, I have to search both lists, comparing the x/y coordinates of the current node, with each node in the lists. This seems over complicated. What is a good way of keeping track of the neighbours of a given node?
#4 Moderators - Reputation: 6658
Posted 01 December 2012 - 05:15 PM
#5 Members - Reputation: 820
Posted 01 December 2012 - 06:22 PM
For the open list, a binary min-heap is a good structure to store nodes. After an "insert" / "remove top" operation, he top item will always be the node with the least F score.
For your closed list, you don't actually need a real list to store nodes, if you'll never take things out from the closed list. So instead of adding a node to the closed list, you can just use a flag to indicate whether the node is in closed list, open list, or neither.
These are just what I've found to be useful from my own recent (also first time) implementation.
#6 Members - Reputation: 178
Posted 01 December 2012 - 06:43 PM
These are some images showing it in action. Blue representes an obstacle tile, orange a closed list square (explored) and the white line is the final path. Does this look correct? It moves towards the obstacle, then fills in back toward the starting point, until it can get around the obstacle, then resumes.
Edited by Silgen, 01 December 2012 - 06:43 PM.
#9 Members - Reputation: 820
Posted 01 December 2012 - 07:03 PM
I've finished implementing what I believe to be an A* algorithm in some rather heinous code. I hope to try out binary heaps when I revisit this.
These are some images showing it in action. Blue representes an obstacle tile, orange a closed list square (explored) and the white line is the final path. Does this look correct? It moves towards the obstacle, then fills in back toward the starting point, until it can get around the obstacle, then resumes.
The pathes seem good, but aren't the pathes supposed to be completely inside the oranged area? Since you can only know a path if it is explored. Can you try producing these pictures with the open nodes also coloured?
#10 Moderators - Reputation: 6658
Posted 01 December 2012 - 07:03 PM
I'm not sure I follow what you're saying. From the point just above the obstacle, it should make a diagonal step to the lower left. By making a horizontal step left it needs to take an extra vertical step down later.Surely it would have had to make the diagonal movement just before reaching the point though?
Edited by SiCrane, 01 December 2012 - 07:04 PM.






