Search Algorithms in AI
Search Algorithms in AI
The numbers written on edges represent the distance between the nodes.
Find the most cost-effective path to reach from start state A to final state J
using A* Algorithm.
Step-01:
Path- A → F
Step-02:
Path- A → F → G
Step-03:
Path- A → F → G → I
Step-04:
Path- A → F → G → I → J
This is the required shortest path from node A to node J.