-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCode 3 A Star Algo.cpp
143 lines (129 loc) · 3 KB
/
Code 3 A Star Algo.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#include<bits/stdc++.h>
using namespace std;
typedef pair<int, int> iPair;
struct node
{
node(int a, int b) {
dest=a;
weight= b;
}
int dest;
int weight;
};
void astar(int s,int d,vector<node>v[],int visited[],int parent[],int heu[],int dist[],int n)
{
priority_queue< iPair, vector <iPair> , greater<iPair> > pq;
pq.push(make_pair(heu[s],s));
dist[s]=0;
while(!pq.empty())
{
int p_s = pq.top().second;
if(p_s == d)
{
return;
}
pq.pop();
if(!visited[p_s])
{
for(int i=0 ; i<v[p_s].size() ; i++)
{
if(!visited[v[p_s][i].dest])
{
int f = dist[p_s] + v[p_s][i].weight + heu[v[p_s][i].dest];
pq.push(make_pair(f,v[p_s][i].dest));
dist[v[p_s][i].dest] = dist[p_s] + v[p_s][i].weight;
parent[v[p_s][i].dest] = p_s;
}
}
visited[p_s]=1;
}
}
}
int main()
{
cout<<"Enter number of vertices in the graph :"<<endl;
int n;
cin>>n;
vector<node>v[n];
cout<<"Enter the number of edges :"<<endl;
int e;
cin>>e;
for(int i=0;i<e;i++)
{
cout<<"Enter the from vertex: "<<endl;
int s;
cin>>s;
cout<<"Enter the to vertex: "<<endl;
int d;
cin>>d;
cout<<"Enter the weight "<<endl;
int w;
cin>>w;
cout<<endl;
v[s].push_back(node(d, w));
}
int visited[n];
int parent[n];
int heu[n];
int dist[n];
cout<<"Enter the heuristic values"<<endl;
for(int i=0;i<n;i++)
{
cout<<"For vertex "<<i<<" : ";
cin>>heu[i];
visited[i]=0;
parent[i]=i;
dist[i]=INT_MAX;
}
cout<<"Enter the source : ";
int s;
cin>>s;
cout<<"Enter the destination : ";
int d;
cin>>d;
/*
v[0].push_back(node(1, 2));
v[0].push_back(node(2, 2));
v[0].push_back(node(3, 2));
v[1].push_back(node(4, 2));
v[1].push_back(node(5, 2));
v[4].push_back(node(6, 2));
v[4].push_back(node(7, 2));
v[6].push_back(node(8, 2));
v[7].push_back(node(9, 2));
heu[0] = 4;
heu[1] = 3;
heu[2] = 5;
heu[3] = 5;
heu[4] = 2;
heu[5] = 4;
heu[6] = 3;
heu[7] = 1;
heu[8] = 4;
heu[9] = 0;
for(int i=0;i<n;i++)
{
visited[i]=0;
parent[i]=i;
dist[i]=INT_MAX;
}
*/
astar(s,d,v,visited,parent,heu,dist,n);
int cur=d;
cout<<endl;
cout<<"Path from Vertex "<<s<<"to Vertex "<<d<<"is "<<endl;
stack<int> path;
do
{
path.push(cur);
cur=parent[cur];
}while(cur!=0);
path.push(s);
while(!path.empty())
{
cout<<path.top()<<"\t";
path.pop();
}
cout << endl;
return 0;
}