I was wondering if anyone could explain the complexity of the A * time. I use heuristics using Euclidean distance for weight estimation. There are no loops in the heuristic function. Therefore, I believe that the time complexity of the heuristic is O (1).
Given this, what would be the complexity of A * and how was it obtained?
source
share