-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.cpp
130 lines (115 loc) · 2.86 KB
/
graph.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
#include "graph.h"
graph::graph(int i)
{
capacity = i;
size = 0;
h = new hashTable(i);
}
//insertion of source vertex, destination vertex, and distance
//Happens at the read in phase
//distance should be parsed into integer before input
int graph::insert(const string &sID, const string &dID, int dist) {
//insertion of a vertex
vertex *s;
bool b;
//if vertex does not exist, insert vertex
if (!h->contains(sID)) {
s = new vertex(sID);
node_list.push_back(s);
h->insert(sID, node_list.back());
size++;
}
if (!h->contains(dID)) {
s = new vertex(dID);
node_list.push_back(s);
h->insert(dID, node_list.back());
size++;
}
s = static_cast<vertex *> (h->getPointer(sID, &b));
//insertion of an edge
vertex *d = new vertex(dID, dist, false, s);
s->adj.push_back(d);
return 0;
}
//tracks the shortest path from a source vertex to all other verticies
void graph::dijkstra(const string &sID) {
vertex *s;
bool b;
string s1;
int i, key;
heap queue(capacity);
if (!h->contains(sID)) return;
for (vertex *itr: node_list) {
i = queue.insert(itr->id, itr->dist, itr);
if (i == 1) cerr << "heap full" << endl;
if (i == 2) cerr << "id exists" << endl;
}
s = static_cast<vertex *> (h->getPointer(sID, &b));
if (!b) return;
s->dist = 0;
i = queue.setKey(sID, 0);
if(i==1) cerr << "Set Key failed" << endl;
int cnt = 1;
vertex *v;
while (!queue.deleteMin(NULL, &key, &v)) {
//retrieve current shortest distance we see
for (vertex *itr: v->adj) {
vertex *w = static_cast<vertex *> (h->getPointer(itr->id, &b));
if (!b) return;
//update distance whenever we find a shorter distance
if (v->dist + itr->dist < w->dist) {
w->dist = v->dist + itr->dist;
w->path = v;
int j = queue.setKey(w->id, w->dist);
if (j == 1) cerr << "Set Key failed" << endl;
}
}
cnt++;
v->known = true;
}
}
bool graph::contains(const string &sid){
return h->contains(sid) ? true:false;
}
//prints the shortest path from a source vertex to all other vertices
void graph::printPaths(const string &sID, const string &outFileName) {
string result;
//write path result
ofstream ofs(outFileName.c_str());
if (!ofs) {
cerr << "failed to open " << outFileName << endl;
return ;
}
if (h->contains(sID)) {
bool b;
vertex *s = static_cast<vertex *> (h->getPointer(sID, &b));
for (vertex *itr: node_list) {
string line = "";
string path = "";
line = line + itr->id + ": ";
int dist = printPath(itr, path);
path = " [" + path + "]";
result = result + line;
if (dist == INT32_MAX/2) {
path = "NO PATH\n";
result = result + path;
}
else {
ostringstream ss;
ss << dist;
result = result + ss.str() + path + "\n";
}
ofs << result;
result = "";
}
}
ofs.close();
}
int graph::printPath(vertex *v, string &s) {
if (v->path != NULL) {
printPath(v->path, s);
s = s + ", ";
}
s = s + v->id;
return v->dist;
}