J jsmwoolf macrumors regular Original poster Nov 2, 2011 #1 Does anyone know a website on efficient path finding with grids, matrix, etc. that doesn't tend to repeat itself? Thanks.
Does anyone know a website on efficient path finding with grids, matrix, etc. that doesn't tend to repeat itself? Thanks.
GorillaPaws macrumors 6502a Nov 2, 2011 #2 I know that A star (aka A*) is commonly used. I'm uncertain of exactly how efficient it is, but it's widely used as far as I have read.
I know that A star (aka A*) is commonly used. I'm uncertain of exactly how efficient it is, but it's widely used as far as I have read.
J jsmwoolf macrumors regular Original poster Nov 3, 2011 #3 Thanks. Another question would be could you implement special conditions such as non repeating path or never to overlap a spot when it was hit with A*? Also, can you also program it to find all paths, not just the quickest path?
Thanks. Another question would be could you implement special conditions such as non repeating path or never to overlap a spot when it was hit with A*? Also, can you also program it to find all paths, not just the quickest path?
D dmi macrumors regular Nov 3, 2011 #4 For all non-repeating routes, depth-first search would seem to be the simplest approach.