-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.h
55 lines (47 loc) · 1.36 KB
/
graph.h
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
#ifndef _GRAPH_H
#define _GRAPH_H
#include "heap.h"
#include <list>
#include <iostream>
#include <vector>
#include <sstream>
using namespace std;
class graph
{
private:
//node for graphs
//can act as both a vector and an edge
class vertex {
public:
string id;
int dist;
bool known;
vertex *path;
//this list serves as edges
list <vertex *> adj;
vertex(string id, int dist = INT32_MAX/2, bool known = false, vertex *path = NULL): id(id), dist(dist), known(known), path(path) {};
};
//counter to used while printing paths
int size;
int capacity;
//hashtable to efficiently find the given vertex
hashTable *h;
//list of all source vertices(nodes)
list <vertex *> node_list;
//recursive method for printpaths
int printPath(vertex * v, string &s);
public:
//initiate graph
graph(int capacity);
//insertion of source vertex, destination vertex, and distance
//Happens at the read in phase
//distance should be parsed into integer before input
int insert(const string &sid, const string &did, int dist);
//tracks the shortest path from a source vertex to all other verticies
void dijkstra(const string &sid);
//simple contains function that checks whether a vertex exists
bool contains(const string &sid);
//prints the shortest path from a source vertex to all other vertices
void printPaths(const string &sid, const string &outputfile);
};
#endif