-
Notifications
You must be signed in to change notification settings - Fork 6
/
Graph.h
147 lines (134 loc) · 3.34 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#ifndef GRAPH_H
#define GRAPH_H
#include <vector>
#include <cstdlib>
#include <algorithm>
#include <functional>
#include <cstdio>
#include <iostream>
#include <fstream>
using namespace std;
class Graph
{
public:
int n; // # of nodes
long m; // # of edges
int** inAdjList;
int** outAdjList;
int* indegree;
int* outdegree;
Graph()
{
n = m = 0;
}
~Graph()
{
for(int i = 0; i < n ;i++){
delete[] inAdjList[i];
delete[] outAdjList[i];
}
delete [] outAdjList;
delete [] inAdjList;
delete [] indegree;
delete [] outdegree;
}
void inputGraph(string filename)
{
m =0 ;
ifstream infile(filename.c_str());
infile >> n;
cout << "n= " << n << endl;
indegree = new int[n];
outdegree = new int[n];
for(int i = 0; i < n; i++){
indegree[i] = 0;
outdegree[i] = 0;
}
int fromNode, toNode;
int edgeCount = 0;
while(infile >> fromNode >> toNode){
//infile >> fromNode >> toNode;
outdegree[fromNode]++;
indegree[toNode]++;
}
cout << "..." << endl;
inAdjList = new int*[n];
outAdjList = new int*[n];
int* pointer_in = new int[n];
int* pointer_out = new int[n];
for(int i = 0; i < n; i++){
pointer_out[i] = 0;
pointer_in[i] = 0;
}
for(int i =0; i < n; i++){
/*if(outdegree[i] == 0){
outdegree[i] = 1;
outAdjList[i] = new int[1];
outAdjList[i][0] = i;
inAdjList[i] = new int[indegree[i] + 1];
inAdjList[i][0] = i;
pointer_out[i]++;
pointer_in[i]++;
}*/
//else{
inAdjList[i] = new int[indegree[i]];
outAdjList[i] = new int[outdegree[i]];
//}
}
infile.clear();
infile.seekg(0);
clock_t t0 = clock();
infile >> n;
cout << "n=: " << n << endl;
while(infile >> fromNode >> toNode){
//infile >> fromNode >> toNode;
outAdjList[fromNode][pointer_out[fromNode]++] = toNode;
inAdjList[toNode][pointer_in[toNode]++] = fromNode;
m++;
}
infile.close();
clock_t t1 = clock();
cout << "m = :" << m << endl;
cout << "read file time: " << (t1 - t0) / (double) CLOCKS_PER_SEC << endl;
delete[] pointer_in;
delete[] pointer_out;
}
int getInSize(int vert){
/*if(vert == 0)
return inCount[0];
else
return inCount[vert] - inCount[vert - 1];*/
return indegree[vert];
}
int getInVert(int vert, int pos){
/*if(vert == 0)
return inEdge[pos];
else
return inEdge[inCount[vert-1] + pos];*/
return inAdjList[vert][pos];
}
int getOutSize(int vert){
/*if(vert == 0)
return outCount[0];
else
return outCount[vert] - outCount[vert - 1];*/
return outdegree[vert];
}
int getOutVert(int vert, int pos){
/*if(vert == 0)
return outEdge[pos];
else
return outEdge[outCount[vert-1] + pos];*/
return outAdjList[vert][pos];
}
void toFile(string filename){
ofstream output(filename);
for(int i = 0; i < n; i++){
for(int j = 0; j < outdegree[i]; j++){
output << i << " " << outAdjList[i][j] << "\n";
}
}
output.close();
}
};
#endif