diff --git a/dijkstras.cpp b/dijkstras.cpp index 87d66a1..7903d4b 100644 --- a/dijkstras.cpp +++ b/dijkstras.cpp @@ -6,24 +6,25 @@ using namespace std; +template class Graph { - unordered_map> vertices; + unordered_map> vertices; public: - void add_vertex(char name, const unordered_map& edges) + void add_vertex(VertexT name, const unordered_map& edges) { - vertices.insert(unordered_map>::value_type(name, edges)); + vertices.insert(typename unordered_map>::value_type(name, edges)); } - vector shortest_path(char start, char finish) + vector shortest_path(VertexT start, VertexT finish) { - unordered_map distances; - unordered_map previous; - vector nodes; - vector path; + unordered_map distances; + unordered_map previous; + vector nodes; + vector path; - auto comparator = [&] (char left, char right) { return distances[left] > distances[right]; }; + auto comparator = [&] (VertexT left, VertexT right) { return distances[left] > distances[right]; }; for (auto& vertex : vertices) { @@ -33,7 +34,7 @@ class Graph } else { - distances[vertex.first] = numeric_limits::max(); + distances[vertex.first] = numeric_limits::max(); } nodes.push_back(vertex.first); @@ -43,7 +44,7 @@ class Graph while (!nodes.empty()) { pop_heap(begin(nodes), end(nodes), comparator); - char smallest = nodes.back(); + VertexT smallest = nodes.back(); nodes.pop_back(); if (smallest == finish) @@ -57,14 +58,14 @@ class Graph break; } - if (distances[smallest] == numeric_limits::max()) + if (distances[smallest] == numeric_limits::max()) { break; } for (auto& neighbor : vertices[smallest]) { - int alt = distances[smallest] + neighbor.second; + DistanceT alt = distances[smallest] + neighbor.second; if (alt < distances[neighbor.first]) { distances[neighbor.first] = alt; @@ -80,7 +81,7 @@ class Graph int main() { - Graph g; + Graph<> g; g.add_vertex('A', {{'B', 7}, {'C', 8}}); g.add_vertex('B', {{'A', 7}, {'F', 2}}); g.add_vertex('C', {{'A', 8}, {'F', 6}, {'G', 4}}); @@ -90,7 +91,7 @@ int main() g.add_vertex('G', {{'C', 4}, {'F', 9}}); g.add_vertex('H', {{'E', 1}, {'F', 3}}); - for (char vertex : g.shortest_path('A', 'H')) + for (const auto& vertex : g.shortest_path('A', 'H')) { cout << vertex << endl; }