-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraph.h
More file actions
216 lines (188 loc) · 5.03 KB
/
Graph.h
File metadata and controls
216 lines (188 loc) · 5.03 KB
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#pragma once
#include"Header.h"
using namespace std;
class AdjList
{
public:
Bin* head;
Bin* tail;
AdjList()
{
head = NULL;
tail = NULL;
}
void insert(string s)
{
Bin* newBin = new Bin();
newBin->SetBinLocation(s);
if (head == NULL)
{
head = newBin;
tail = newBin;
}
else
{
tail->next = newBin;
tail = newBin;
}
}
void display2()
{
Bin* temp = head;
while (temp != NULL)
{
temp->DisplayBin();
cout << "\033[1;34m \033[0m";
temp = temp->next;
}
cout << endl;
}
void display()
{
Bin* temp = head;
while (temp != NULL)
{
temp->DisplayBin();
cout << "\033[1;34m \033[0m";
temp = temp->next;
}
cout << endl;
}
};
class Graph
{
public:
AdjList* arr;
int vertices;
int currindex;
int List_MaxCapacity;
Graph(int a = 0)
{
arr = new AdjList[a + 1];
vertices = a;
currindex = 0;
}
// 3
void showGraphStructure()
{
cout << "==================" << endl;
for (int i = 0; i < vertices; i++)
{
if (i == 10)
{
// cout << "Truck Centre: " << endl;
}
if (i == 11)
{
// cout << "Dump Location: " << endl;
}
arr[i].display2();
cout << endl;
}
cout << "==================" << endl;
}
void insertvertex(Bin* temp)
{
if (currindex < vertices)
{
arr[currindex].insert(temp->BinLocation);
currindex++;
}
else
{
cout << "Adjlist reached to its Max capacity" << endl;
}
}
void insertedge(int src, int dest, int weight)
{
// Check if src and dest are within the valid range
if (src >= 0 && src < vertices && dest >= 0 && dest < vertices && src != dest)
{
// Check if the edge already exists
Bin* current = arr[src].head;
while (current != NULL)
{
string currentEdge = to_string(dest) + "(" + to_string(weight) + ")";
if (current->BinLocation == currentEdge)
{
// Edge already exists, no need to insert again
return;
}
current = current->next;
}
// Insert edge in the adjacency list of src
arr[src].insert(to_string(dest) + "(" + to_string(weight) + ")");
}
else
{
// cerr << "Error: Invalid edge or self-loop." << endl;
}
}
void getDistance(int src, int dest)
{
if (src >= 0 && src < vertices && dest >= 0 && dest < vertices)
{
Bin* current = arr[src].head;
string edgeToFind = to_string(dest) + "(";
bool edgeFound = false;
string weightStr = "";
while (current != nullptr)
{
string nodeValue = current->BinLocation;
bool foundEdge = true;
for (size_t i = 0; i < edgeToFind.length(); ++i)
{
if (nodeValue[i] != edgeToFind[i])
{
foundEdge = false;
break;
}
}
if (foundEdge)
{
size_t startPos = edgeToFind.length();
size_t endPos = startPos;
// Find the end position of the weight string
while (nodeValue[endPos] != ')')
{
++endPos;
}
// Extract the weight
weightStr = nodeValue.substr(startPos, endPos - startPos);
edgeFound = true;
break;
}
current = current->next;
}
// Display the weight or indicate if the edge does not exist
if (edgeFound)
{
cout << "Weight from Bin " << src << " to Bin " << dest << ": " << weightStr << endl;
}
else
{
cout << "Edge from Bin " << src << " to Bin " << dest << " does not exist." << endl;
}
}
else
{
cerr << "Error: Invalid bins provided." << endl;
}
}
void resetGraph()
{
currindex = 0;
for (int i = 0; i < vertices; ++i)
{
Bin* current = arr[i].head;
while (current != nullptr)
{
current->BinLocation = "";
current->BinID = 0;
current->filledPercent = 0;
current->next = NULL;
current = current->next;
}
}
}
};