A* - Keeping track of nodes

Started by
10 comments, last by Silgen 11 years, 4 months ago
Working on my A* implementation - Mostly working fine, but I'm having difficulties in updating the g values of nodes.

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?
Advertisement
What data structures are you using for your implementation? Ideally you want to use set structures for things like the closed set so you don't have to do things like compare against every node in the sets.
My code is pretty dirty at the moment - unsorted lists for open/closed, and a 2d array for the map. The path is just a singly linked list of nodes.
Using ordinary lists would be suboptimal. Take a look at the algorithm and look at what operations are done on each of the collections. Ex: for the closed set all you ever do is add elements and check if elements are part of the the closed set, so something like a binary search tree or a hash table would work well, and most languages have those kinds of structures as part of their standard library.
Hello
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.
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.

UvDhv.jpg
The first image doesn't look quite right. The final path seems suboptimal; it can save a step by moving diagonally where it moved horizontally right past the obstacle.
Surely it would have had to make the diagonal movement just before reaching the point though?

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?

Surely it would have had to make the diagonal movement just before reaching the point though?

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.

This topic is closed to new replies.

Advertisement