-
Notifications
You must be signed in to change notification settings - Fork 1
/
355.cpp
184 lines (159 loc) · 3.51 KB
/
355.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#include<iostream>
#include<map>
#include<list>
#include<queue>
#include<set>
using namespace std;
template<typename T>
class graph {
public:
map<T, list<pair<T,int> > > adjlist;
void addEdge(T u, T v, int dist,bool bidirec = 1)
{
adjlist[u].push_back(make_pair(v, dist));
if (bidirec)
adjlist[v].push_back(make_pair(u, dist));
}
void print_adj()
{
for (auto n : adjlist)
{
cout << n.first<<" : ";
for (auto a : n.second )
{
cout <<"( "<<a.first<<" , "<<a.second<<" ) " ;
}
cout << endl;
}
}
void bfs(T u)
{
map< T, bool> visited;
queue<T> q;
q.push(u);
while (!q.empty())
{
T front_element = q.front();
q.pop();
if (!visited[front_element]) {
cout << front_element << " -> ";
visited[front_element] = true;
}
for (auto a : (adjlist[front_element]))
{
if(!visited[a.first])
q.push(a.first);
}
}
}
void dfs_helper(T src,map<T,bool> &visited)
{
visited[src] = true;
cout << src << " -> ";
for (auto a : adjlist[src])
{
if (!visited[a.first])
{
dfs_helper(a.first, visited);
}
}
}
void dfs_utility(T src) //calling function of dfs helper
{
map < T, bool> visited;
dfs_helper(src, visited);
}
void bfs_sssp(T src)
{
map<T, int> distance;
map<T, T> parent;
for (auto i : adjlist)
{
distance[i.first] = INT_MAX;
}
queue<T> q;
q.push(src);
distance[src] = 0;
parent[src]=src;
while (!q.empty())
{
T front_element = q.front();
q.pop();
for (auto neighbours : (adjlist[front_element]))
{
if (distance[neighbours.first] == INT_MAX)
{
q.push(neighbours.first);
distance[neighbours.first] = distance[front_element] + 1;
parent[neighbours.first] = front_element;
}
}
}
for (auto i : adjlist)
{
cout << "distance to " << i.first << " from " << src << " is " << distance[i.first] << endl;
}
//suppose u want to know the hortest path beeen 2 nodes.
//let destion be == g
T temp = 'g';
while (parent[temp] != temp)
{
cout << temp << "<--";
temp = parent[temp];
}cout << src << endl;
}
void dijkstra(T src)
{
map<T, int> dist;
for (auto i : adjlist)
{
dist[i.first] = INT_MAX;
}
set<pair<int, T> > s;
s.insert(make_pair(0, src));
dist[src] = 0;
while (!s.empty())
{
auto p = *(s.begin());
int nodedist = p.first;// sorce node ka distance
T temp = p.second;
s.erase(s.begin());
for (auto neigh : adjlist[temp])
{
if (nodedist + neigh.second < dist[neigh.first])//neigh.second distance h adjlist me
{
//purane wale ko delete karo and naye wale ko dalo
auto f = s.find(make_pair(dist[neigh.first], neigh.first));
if (f != s.end())
{
s.erase(f);
}
dist[neigh.first] = nodedist + neigh.second;
s.insert(make_pair(dist[neigh.first], neigh.first));
}
}
}
for (auto d : dist)
cout << d.first << " and " << d.second << endl;
}
};
int main()
{
graph<char> g;
g.addEdge('0', '1',4, 0);
g.addEdge('0', '7',8, 0);
g.addEdge('1', '7',11, 0);
g.addEdge('1', '2',8, 0);
g.addEdge('7', '8',7, 0);
g.addEdge('2', '8',2, 0);
g.addEdge('8', '6',6, 0);
g.addEdge('2', '5',4, 0);
g.addEdge('6', '5',2, 0);
g.addEdge('2', '3',7, 0);
g.addEdge('3', '3',14, 0);
g.addEdge('3', '4',9, 0);
g.addEdge('5', '4',10, 0);
g.addEdge('7', '6',1, 0);
g.dijkstra('0');
return 0;
}