Implementation of any 2 uninformed search methods with some application. byAdmin •18:14 #include"iostream" #include"stdlib.h" #define MAX 200 using namespace std; int q[MAX] = {0}; bool visited[MAX] = {false}; int n,i,j, front, rear; struct node { int data; struct node *next…
Implement A* approach for any suitable application. byAdmin •17:51 AStar.cpp 1: #include<iostream> 2: #include<stdlib.h> 3: #define MAX 200 4: using namespace std; 5: int hn[MAX]={-1}; 6: int n; // no. of vertices 7: int src, dest; // source &…