So I have a 10x10 grid which contains an enemy and the player, originally positioned at (0,0). The enemy needs to search for the player using dfs. The goal state will be constantly changing as the player will move and then the enemy will follow suit. I'm having problems with some of the tutorials that explain about directed trees and such. This is not suitable for this as the enemy may need to go back to a previously 'visited' square. Also a lot of the tutorials talk about adding connections explicitly in the code. This would be crazy with 100 potential positions?
I'm not looking for a code solution or anything like that, just a clear path to follow would be greatly appreciated. Thank you
Look into linked nodes. Each one will have 4 node references in it (some of which will be null on the edges of your board), and maybe containsEnemy and containsPlayer booleans.