Tagged Questions
A graph search algorithm that relies upon a heuristic.
21
votes
7answers
6k views
How does Dijkstra's Algorithm and A-Star compare?
I was looking at what the guys in the Mario AI Competition have been doing and some of them have built some pretty neat Mario bots utilizing the A* (A-Star) Pathing Algorithm.
(Video of Mario A* ...
14
votes
3answers
540 views
Finding good heuristic for A* search
I'm trying to find the optimal solution for a little puzzle game called Twiddle (an applet with the game can be found here). The game has a 3x3 matrix with the number from 1 to 9. The goal is to bring ...
13
votes
3answers
3k views
Python - Speed up an A Star Pathfinding Algorithm
I've coded my first slightly-complex algorithm, an implementation of the A Star Pathfinding algorithm. I followed some Python.org advice on implementing graphs so a dictionary contains all the nodes ...
11
votes
4answers
280 views
A* heuristic to create Bresenham lines
From what I understand about A* heuristics and how the Bresenham algorithm works, this may not be be possible since only the current state and goal state are passed to the heuristic function. But ...
10
votes
6answers
6k views
How do I implement an A* pathfinding algorithm, with movement costs for every programming language?
Can we get people to post code of simple, optimized implementations of the A* pathfinding algorithm, in every single language?
This is mostly for fun and to play with what stackoverflow itself is ...
8
votes
2answers
248 views
Using A* search algorithm to solve 3x3 three-dimensional box puzzle?
I am working on a 3x3 three-dimensional box puzzle problem in my homework. I will code with C.
There are 26 boxes and at first, first place is empty. By sliding boxes I must arrange them in ...
8
votes
2answers
385 views
Removing the obstacle that yields the best path from a map after A* traversal
I traverse a 16x16 maze using my own A* implementation.
All is well. However, after the traversal, I would like to find out what wall would give me the best alternative path. Apart from removing ...
8
votes
5answers
1k views
Fastest cross-platform A* implementation?
With so many implementations available, what is the fastest executing (least CPU intensive, smallest binary), cross-platform (Linux, Mac, Windows, iPhone) A* implementation for C++ using a small grid?
...
8
votes
3answers
1k views
Why is the complexity of A* exponential in memory?
Wikipedia says on A* complexity the following (link here):
More problematic than its time
complexity is A*’s memory usage. In
the worst case, it must also remember
an exponential number of ...
8
votes
6answers
5k views
What can be the efficient approach to solve the 8 puzzle problem?
The 8-puzzle is a square board with 9 positions, filled by 8 numbered tiles and one gap. At any point, a tile adjacent to the gap can be moved into the gap, creating a new gap position. In other words ...
8
votes
9answers
1k views
Why does A* path finding sometimes go in straight lines and sometimes diagonals? (Java)
I'm in the process of developing a simple 2d grid based sim game, and have fully functional path finding.
I used the answer found in my previous question as my basis for implementing A* path finding. ...
7
votes
2answers
285 views
A* Search Algorithm
I would like to have something clarified with regards to the following A* Search Example:
The sections highlighted with the red ellipses are the areas that I do not understand; it appears that ...
7
votes
2answers
1k views
Using A* to solve Travelling Salesman Problem
I've been tasked to write an implementation of the A* algorithm (heuristics provided) that will solve the travelling salesman problem. I understand the algorithm, it's simple enough, but I just can't ...
7
votes
7answers
2k views
questions regarding the use of A* with the 15-square puzzle
I'm trying to build an A* solver for a 15-square puzzle.
The goal is to re-arrange the tiles so that they appear in their natural positions. You can only slide one tile at a time. Each possible ...
6
votes
2answers
192 views
I don't understand A* Pathfinding
From what I understand:
Add the current node to the closed list.
Find adjacent nodes to the current node, and if they are not unwalkable nodes and not on the closed list, add that node to the open ...
6
votes
1answer
435 views
A* implementation in PHP validation
This is a code that I got from the site here and I'd like to know whether this implementation of A* is correct. I have looked at it and compare it with the wikipedia page and it seems valid.. The ...
6
votes
2answers
3k views
Implementation of A Star (A*) Algorithm in Java
Disclaimer: I have little background in Java, since I am predominantly a C# developer.
Would like to have the java implementation of A* algorithm.
Yes, I saw many versions of the same online and I am ...
6
votes
3answers
431 views
A* pathfinder obstacle collision problem
I am working on a project with a robot that has to find its way to an object and avoid some obstacles when going to that object it has to pick up.
The problem lies in that the robot and the object ...
6
votes
2answers
548 views
Finding minimum cut-sets between bounded subgraphs
If a game map is partitioned into subgraphs, how to minimize edges between subgraphs?
I have a problem, Im trying to make A* searches through a grid based game like pacman or sokoban, but i need to ...
6
votes
3answers
2k views
A* heuristic, overestimation/underestimation?
I am confused about the terms overestimation/underestimation. I perfectly get how A* algorithm works, but i am unsure of the effects of having a heuristic that overestimate or underestimate.
Is ...
6
votes
7answers
8k views
How do you solve the 15-puzzle with A-Star or Dijkstra's Algorithm?
I've read in one of my AI books that popular algorithms (A-Star, Dijkstra) for path-finding in simulation or games is also used to solve the well-known "15-puzzle".
Can anyone give me some pointers ...
5
votes
1answer
51 views
Splitting up A* pathing of many units into seperate game frames
So my issues is that, for large groups of units, attempting to pathfind for all of them in the same frame is causing a pretty noticeable slow down. When pathing for 1 or 2 units the slow down is ...
5
votes
1answer
163 views
Why does my a-star algorithm expand too many nodes despite having a correct heuristic?
I'm doing an assignment where I have to use a-star to solve a 15-puzzle (in C).
The heuristic function is Manhattan distance (aka taxicab distance).
We are given a sample input/output where the ...
5
votes
2answers
204 views
A* algorithm not working properly
I need some help with my A* algorithm implementation.
When I run the algorithm it does find the goal, but the path is definately not the shortest :-P
Here is my code, please help me spot the bugs!
I ...
5
votes
1answer
441 views
A-star algorithm
I'm having issues with my A-star implemention. It does find path from my point A to B but not if the terrain is more 'complex', then my Find() function seems to not be ending. For instance, it does ...
5
votes
5answers
411 views
Library for tree search for combinatorial optimization problems
I notice that some of the "hard" combinatorial problems I come across can be cast in terms of some type of tree search like alpha-beta pruning, or beam search, or a similar algorithm. However, ...
5
votes
1answer
305 views
how to find the best three routes using A* algorithm
In A* usually the result that you get is only one path. Is it possible though for a given origin and destination to have 3 recommended path according to A*? So the second returned is the second best ...
5
votes
2answers
388 views
Performance of an A* search implemented in Clojure
I have implemented an A* search algorithm for finding a shortest path between two states.
Algorithm uses a hash-map for storing best known distances for visited states. And one hash-map for storing ...
5
votes
2answers
226 views
Adding waypoints to A* graph search
I have the ability to calculate the best route between a start and end point using A*. Right now, I am including waypoints between my start and end points by applying A* to the pairs in all ...
5
votes
1answer
817 views
Correct formulation of the A* algorithm
I'm looking at definitions of the A* path-finding algorithm, and it seems to be defined somewhat differently in different places.
The difference is in the action performed when going through the ...
4
votes
3answers
83 views
Find a path from point A to B in X steps. (A* ish)
I am currently looking at a way of visualising data and a part of the algorithm needs something 99% the same as A* Path Finding but I cannot wrap my head round it fully. I know it will be a fairly ...
4
votes
1answer
193 views
A* Algorithm does not find shortest path
I am trying to implement the A* algorithm in python but have hit a problem when trying to find the path of this map:
X X X X X X X S = Start
0 0 0 X 0 0 0 E = End
0 S 0 X 0 E 0 X = Wall
0 ...
4
votes
2answers
567 views
A* search algorithm in PHP
Does anyone have an implementation of the A* algorithm in PHP? I know that wikipedia has a pseudocode and a link to a C++ one, but I can't seem to find one already written in PHP.
I am also looking ...
4
votes
6answers
521 views
PacMan character AI suggestions for optimal next direction
Firstly, this is AI for PacMan and not the ghosts.
I am writing an Android live wallpaper which plays PacMan around your icons. While it supports user suggestions via screen touches, the majority of ...
4
votes
3answers
630 views
Searching in graphs trees with Depth/Breadth first/A* algorithms
I have a couple of questions about searching in graphs/trees:
Let's assume I have an empty chess board and I want to move a pawn around from point A to B.
A. When using depth first search or breadth ...
4
votes
2answers
858 views
Multithreaded A* Search in Java or Lisp or C#
Is there a good way to do a multithreaded A* search? Single threaded is fairly easy, as given in (for example) Artificial Intelligence: A Modern Approach, but I have not come across a good ...
3
votes
2answers
105 views
A* Pathfinding and Plenty of Pointer Problems?
I know that A* algorithm implementation problems are relatively common on stackoverflow (I've been through a lot of other postings). I have been trying for the past couple of days to implement a ...
3
votes
1answer
66 views
What does := mean when used in pseudocode?
When looking at pseudocode (actually, on the Wikipedia article on A*), i came across the use of := to assign or initialize a variable. What does this mean? Is part of some kind of set notation? If ...
3
votes
2answers
120 views
better heuristic then A*
hey guys am enrolled in stenford's ai-class.com and have just learned in my first week of lecture about a* algorithm and how it's better used then other search algo.
I also show one of my class mate ...
3
votes
1answer
520 views
A* bug (A star search algorithm)
I have started to study algorithms and software development and, as a small self evaluation project I have decided to write the A* search algorithm in C++. It uses Qt and OpenGL for the visual part ...
3
votes
2answers
105 views
Running C++ code alongside and interacting with Python
So my current project is mostly in Python, but I'm looking to rewrite the most computationally expensive portions in C++ to try and boost performance. Much of this I can achieve via simple functions ...
3
votes
1answer
396 views
Graph traversal with A* algorithm
Hey, I'm AI Student and gonna try my homework that is implementation of A* algorithm in order to traversal a graph. i use c++ codes and what i made for now is below code which is only a Graph class + ...
3
votes
1answer
115 views
What is the most effective way to find the node with the lowest value to expand in A star with heuristic?
im doing the 8 puzzle solver with the a star algorithm. I implement Manhattan and misplaced heuristic functions in this solver. In some cases, the solver works fine. But in some cases, it takes a lot ...
3
votes
4answers
726 views
How can the A* algorithm be applied to the traveling salesman problem? [closed]
Possible Duplicate:
Using A* to solve Travelling Salesman Problem
I have recently learned that the A* algorithm can be applied to the travelling salesman problem. Bot how exactly do we ...
3
votes
2answers
975 views
Manhattan Heuristic function for A-star (A*)
I found this algorithm here.
I have a problem, I cant seem to understand how to set up and pass my heuristic function.
static public Path<TNode> AStar<TNode>(TNode start, TNode ...
3
votes
2answers
494 views
How to avoid that the robot gets trapped in local minimum?
I have some time occupying myself with motion planning for robots, and have for some time wanted to explore the possibility of improving the opportunities as "potential field" method offers. My ...
3
votes
5answers
517 views
How do I find the most “Naturally" direct route using A-star (A*)
I have implemented the A* algorithm in AS3 and it works great except for one thing.
Often the resulting path does not take the most “natural” or smooth route to the target.
In my environment the ...
3
votes
1answer
993 views
Erlang Implementation of A Star Search Algorithm
I need an Erlang implementation of the A* search algorithm.
Any pointers?
2
votes
3answers
104 views
Time for A* algorithm to solve a 8 tile sliding puzzle
Just wondering if anyone could help me out with some code that I'm currently working on for uni. It's a sliding tile puzzle that I'm coding and I've implemented an A* algorithm with a Manhattan ...
2
votes
2answers
165 views
A*(a star) search algorithm for shortest path
Basically I have I have a sets of nodes containing gps coordinates, How do I implement A* search in such I way that I can use this geopoints to compare them to each other and find the shortest path by ...