Search code examples
algorithmarraylisthashmapa-star

Implementation of A star algorithm


Can the A star algorithm implemented using HashMaps instead of ArrayLists?


Solution

  • First of all, A star is not related to any specific data structure. I implemented it using an Array list and Sorted List( for storing the open nodes in sorted order). You can implement it according to your need