J jsmwoolf macrumors regular Original poster Aug 17, 2011 123 0 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 Oct 26, 2003 932 8 Richmond, VA 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 Aug 17, 2011 123 0 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 Dec 21, 2010 178 42 Nov 3, 2011 #4 For all non-repeating routes, depth-first search would seem to be the simplest approach.
Starfox macrumors 6502 Apr 7, 2011 256 9 Nov 4, 2011 #5 Have you read Jeff Orkin's publications on this problem?