-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDigraph.h
67 lines (63 loc) · 2.13 KB
/
Digraph.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
56
57
58
59
60
61
62
63
64
65
66
67
/*************************************************************************
* Dependencies: Bag.h
*
* A graph, implemented using an array of lists.
* Parallel edges and self-loops are permitted.
*
* % Digraph tinyDG.txt
* 13 vertices, 22 edges
* 0: 5 1
* 1:
* 2: 0 3
* 3: 5 2
* 4: 3 2
* 5: 4
* 6: 9 4 8 0
* 7: 6 9
* 8: 6
* 9: 11 10
* 10: 12
* 11: 4 12
* 12: 9
*
*************************************************************************/
/***************************************************************
* The Digraph class represents a directed graph of vertices
* named 0 through V.
* It supports the following two primary operations: add an edge
* to the digraph, iterate over all of the vertices adjacent from
* a given vertex.
* Parallel edges and self-loops are permitteed.
*
* This implementation uses an adjacency-lists representation,
* which is a vertex-indexed array of Bag objects.
* All oeprations take constant time (in the worst case) except
* iterating over the vertices adjacent from a given vertex, which
* takes time proportional to the number of such vertices.
*
* For additional documentation, see Section 4.2 of Algorithms 4th
* Edition, by Robert Sedgewick and Kevin Wayne.
****************************************************************/
#ifndef DIGRAPH_H
#define DIGRAPH_H
#include <Bag\Bag\Bag.h>
class Digraph {
public:
Digraph(); // Empty constructor
Digraph(int V); // Constructor for V verticies
Digraph(std::istream& input); // Constructor from input stream
~Digraph(); // Destructor
Digraph(const Digraph& G); // Copy constructor
Digraph& operator=(const Digraph& G); // Copy assignment operator
int V() const; // Returns number of verticies
int E() const; // Returns number of edges
void addEdge(int v, int w); // Adds an edge between vertex v and w
Bag<int>& adj(int v) const; // Returns the vertices adjacent to vertex v
Digraph reverse(); // Returns the reverse of the digraph
friend std::ostream& operator<<(std::ostream& output, const Digraph& G);
private:
int V_; // Vertices
int E_; // Edges
Bag<int>* adj_; // Adjacency array of bags
};
#endif