Graph class
// In this graph, nodes are integers in 0..num_nodes-1, and arcs are also
// integers in 0..num_arcs-1 (in the order in which they're added)
// Thus, when you AddArc(4, 128), you implicitly declare the existence of
// at least 129 nodes (0..128).
class Graph {
public:
int AddArc(int from, int to); // Returns the arc index.
// Optional: nodes are automatically added upon AddArc().
void AddNode(int node);
int NumNodes() const;
int NumArcs() const;
// Gets the tail ("from") and head ("to") of an arc.
int Tail(int arc) const;
int Head(int arc) const;
// Returns a list of all the arc indices whose Tail is "from".
const vector<int>& OutgoingArcs(int from) const;
// Returns a list of all the arc indices whose Head is "to".
const vector<int>& IncomingArcs(int to) const;
};
"Sparse Dijkstra" class
#ifndef DIJKSTRA_H_
#define DIJKSTRA_H_
#include <limits> // For std::numeric_limits<double>::infinity().
#include <queue> // For std::priority_queue<>
#include <vector>
#include "base.h"
#include "graph.h"
using std::priority_queue;
using std::vector;
struct DijkstraState {
int node;
double distance;
// So that we can do std::priority_queue<DijkstraState>. Beware the ordering!
bool operator<(const DijkstraState& other) const;
};
// This class helps to run several Dijkstra computation serially (it it NOT
// thread safe) efficiently: by sharing some temporary data structures,
// only O(num edges explored) time is used by each Dijkstra computation,
// even if it's sparse (i.e. num edges explored <<< num nodes).
class Dijkstra {
public:
// The given graph and arc lengths won't be copied, and must remain live for
// the lifetime of this class.
Dijkstra(const Graph* graph, const vector<double>* arc_lengths);
const Graph& GetGraph() const;
// Main Dijkstra call: run a single-source search from source "source",
// and stop when all the targets are reached.
// If "targets" is empty, run until exhaustion (i.e. until all reachable
// nodes are explored).
void RunUntilAllTargetsAreReached(int source, const vector<int>& targets);
// Returns the set of all nodes reached by the last run.
const vector<int>& ReachedNodes() const;
// Element #i is the distance of node #i from the source, in the last run,
// which is infinity if node #i wasn't reached.
const vector<double>& Distances() const;
// Element #i is the arc that arrives at node #i in the shortest
// path from the source, or -1 if that node wasn't reached. Also -1 if the
// node is the source.
const vector<int>& ParentArcs() const;
// Returns the full shortest path (a sequence of arcs) from the source of
// the last run to "node", assuming that "node" was reached.
vector<int> ArcPathFromSourceTo(int node) const;
};
#endif // DIJKSTRA_H_