A star Algorithm byA Ghori •January 26, 2019 Implementation of A* Algorithm #include<iostream> using namespace std; struct node { bool visited; int hue,num; char value; int dist[10]; struct node *child[10]; }; struct node *l[20],*open[20]; int oindex=0,kids; node *search(cha…