-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUndirectedGraph.cs
More file actions
460 lines (394 loc) · 13.6 KB
/
UndirectedGraph.cs
File metadata and controls
460 lines (394 loc) · 13.6 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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.Contracts;
using QuickGraph.Contracts;
using QuickGraph.Collections;
namespace QuickGraph
{
public delegate bool EdgeEqualityComparer<TVertex, TEdge>(TEdge edge, TVertex source, TVertex target)
where TEdge : IEdge<TVertex>;
#if !NETSTANDARD_PRE_2_0
[Serializable]
#endif
[DebuggerDisplay("VertexCount = {VertexCount}, EdgeCount = {EdgeCount}")]
public class UndirectedGraph<TVertex, TEdge>
: IMutableUndirectedGraph<TVertex,TEdge>
where TEdge : IEdge<TVertex>
{
private readonly bool allowParallelEdges = true;
private readonly VertexEdgeDictionary<TVertex, TEdge> adjacentEdges;
private readonly EdgeEqualityComparer<TVertex, TEdge> edgeEqualityComparer;
private int edgeCount = 0;
private int edgeCapacity = 4;
public UndirectedGraph()
: this(true)
{ }
public UndirectedGraph(bool allowParallelEdges)
: this(allowParallelEdges, EdgeExtensions.GetUndirectedVertexEquality<TVertex, TEdge>())
{
this.allowParallelEdges = allowParallelEdges;
}
public UndirectedGraph(bool allowParallelEdges, EdgeEqualityComparer<TVertex, TEdge> edgeEqualityComparer)
:this(allowParallelEdges, edgeEqualityComparer, -1)
{
}
public UndirectedGraph(bool allowParallelEdges, EdgeEqualityComparer<TVertex, TEdge> edgeEqualityComparer, int vertexCapacity)
: this(allowParallelEdges, edgeEqualityComparer, vertexCapacity, EqualityComparer<TVertex>.Default)
{ }
public UndirectedGraph(bool allowParallelEdges, EdgeEqualityComparer<TVertex, TEdge> edgeEqualityComparer, int vertexCapacity, IEqualityComparer<TVertex> vertexComparer)
{
Contract.Requires(edgeEqualityComparer != null);
Contract.Requires(vertexComparer != null);
this.allowParallelEdges = allowParallelEdges;
this.edgeEqualityComparer = edgeEqualityComparer;
if (vertexCapacity > -1)
this.adjacentEdges = new VertexEdgeDictionary<TVertex, TEdge>(vertexCapacity, vertexComparer);
else
this.adjacentEdges = new VertexEdgeDictionary<TVertex, TEdge>(vertexComparer);
}
public EdgeEqualityComparer<TVertex, TEdge> EdgeEqualityComparer
{
get
{
Contract.Ensures(Contract.Result<EdgeEqualityComparer<TVertex, TEdge>>() != null);
return this.edgeEqualityComparer;
}
}
public int EdgeCapacity
{
get { return this.edgeCapacity; }
set
{
this.edgeCapacity = value;
}
}
#region IGraph<Vertex,Edge> Members
public bool IsDirected
{
get { return false; }
}
public bool AllowParallelEdges
{
get { return this.allowParallelEdges; }
}
#endregion
#region IMutableUndirected<Vertex,Edge> Members
public event VertexAction<TVertex> VertexAdded;
protected virtual void OnVertexAdded(TVertex args)
{
Contract.Requires(args != null);
var eh = this.VertexAdded;
if (eh != null)
eh(args);
}
public int AddVertexRange(IEnumerable<TVertex> vertices)
{
int count = 0;
foreach (var v in vertices)
if (this.AddVertex(v))
count++;
return count;
}
public bool AddVertex(TVertex v)
{
if (this.ContainsVertex(v))
return false;
var edges = this.EdgeCapacity < 0
? new EdgeList<TVertex, TEdge>()
: new EdgeList<TVertex, TEdge>(this.EdgeCapacity);
this.adjacentEdges.Add(v, edges);
this.OnVertexAdded(v);
return true;
}
private IEdgeList<TVertex, TEdge> AddAndReturnEdges(TVertex v)
{
IEdgeList<TVertex, TEdge> edges;
if (!this.adjacentEdges.TryGetValue(v, out edges))
this.adjacentEdges[v] = edges = this.EdgeCapacity < 0
? new EdgeList<TVertex, TEdge>()
: new EdgeList<TVertex, TEdge>(this.EdgeCapacity);
return edges;
}
public event VertexAction<TVertex> VertexRemoved;
protected virtual void OnVertexRemoved(TVertex args)
{
Contract.Requires(args != null);
var eh = this.VertexRemoved;
if (eh != null)
eh(args);
}
public bool RemoveVertex(TVertex v)
{
this.ClearAdjacentEdges(v);
bool result = this.adjacentEdges.Remove(v);
if (result)
this.OnVertexRemoved(v);
return result;
}
public int RemoveVertexIf(VertexPredicate<TVertex> pred)
{
var vertices = new List<TVertex>();
foreach (var v in this.Vertices)
if (pred(v))
vertices.Add(v);
foreach (var v in vertices)
RemoveVertex(v);
return vertices.Count;
}
#endregion
#region IMutableIncidenceGraph<Vertex,Edge> Members
public int RemoveAdjacentEdgeIf(TVertex v, EdgePredicate<TVertex, TEdge> predicate)
{
var outEdges = this.adjacentEdges[v];
var edges = new List<TEdge>(outEdges.Count);
foreach (var edge in outEdges)
if (predicate(edge))
edges.Add(edge);
this.RemoveEdges(edges);
return edges.Count;
}
[ContractInvariantMethod]
void ObjectInvariant()
{
Contract.Invariant(this.edgeCount >= 0);
}
public void ClearAdjacentEdges(TVertex v)
{
var edges = this.adjacentEdges[v].Clone();
this.edgeCount -= edges.Count;
foreach (var edge in edges)
{
IEdgeList<TVertex, TEdge> aEdges;
if (this.adjacentEdges.TryGetValue(edge.Target, out aEdges))
aEdges.Remove(edge);
if (this.adjacentEdges.TryGetValue(edge.Source, out aEdges))
aEdges.Remove(edge);
}
}
#endregion
#region IMutableGraph<Vertex,Edge> Members
public void TrimEdgeExcess()
{
foreach (var edges in this.adjacentEdges.Values)
edges.TrimExcess();
}
public void Clear()
{
this.adjacentEdges.Clear();
this.edgeCount = 0;
this.OnCleared(EventArgs.Empty);
}
public event EventHandler Cleared;
private void OnCleared(EventArgs e)
{
var eh = this.Cleared;
if (eh != null)
eh(this, e);
}
#endregion
#region IUndirectedGraph<Vertex,Edge> Members
public bool TryGetEdge(TVertex source, TVertex target, out TEdge edge)
{
foreach (var e in this.AdjacentEdges(source))
{
if (this.edgeEqualityComparer(e, source, target))
{
edge = e;
return true;
}
}
edge = default(TEdge);
return false;
}
public bool ContainsEdge(TVertex source, TVertex target)
{
TEdge edge;
return this.TryGetEdge(source, target, out edge);
}
public TEdge AdjacentEdge(TVertex v, int index)
{
return this.adjacentEdges[v][index];
}
public bool IsVerticesEmpty
{
get { return this.adjacentEdges.Count == 0; }
}
public int VertexCount
{
get { return this.adjacentEdges.Count; }
}
public IEnumerable<TVertex> Vertices
{
get { return this.adjacentEdges.Keys; }
}
[Pure]
public bool ContainsVertex(TVertex vertex)
{
return this.adjacentEdges.ContainsKey(vertex);
}
#endregion
#region IMutableEdgeListGraph<Vertex,Edge> Members
public bool AddVerticesAndEdge(TEdge edge)
{
var sourceEdges = this.AddAndReturnEdges(edge.Source);
var targetEdges = this.AddAndReturnEdges(edge.Target);
if (!this.AllowParallelEdges)
{
if (this.ContainsEdgeBetweenVertices(sourceEdges, edge))
return false;
}
sourceEdges.Add(edge);
if (!EdgeExtensions.IsSelfEdge<TVertex, TEdge>(edge))
targetEdges.Add(edge);
this.edgeCount++;
this.OnEdgeAdded(edge);
return true;
}
public int AddVerticesAndEdgeRange(IEnumerable<TEdge> edges)
{
int count = 0;
foreach (var edge in edges)
if (this.AddVerticesAndEdge(edge))
count++;
return count;
}
public bool AddEdge(TEdge edge)
{
var sourceEdges = this.adjacentEdges[edge.Source];
if (!this.AllowParallelEdges)
{
if (this.ContainsEdgeBetweenVertices(sourceEdges, edge))
return false;
}
sourceEdges.Add(edge);
if (!EdgeExtensions.IsSelfEdge<TVertex, TEdge>(edge))
{
var targetEdges = this.adjacentEdges[edge.Target];
targetEdges.Add(edge);
}
this.edgeCount++;
this.OnEdgeAdded(edge);
return true;
}
public int AddEdgeRange(IEnumerable<TEdge> edges)
{
int count = 0;
foreach (var edge in edges)
if (this.AddEdge(edge))
count++;
return count;
}
public event EdgeAction<TVertex, TEdge> EdgeAdded;
protected virtual void OnEdgeAdded(TEdge args)
{
var eh = this.EdgeAdded;
if (eh != null)
eh(args);
}
public bool RemoveEdge(TEdge edge)
{
bool removed = this.adjacentEdges[edge.Source].Remove(edge);
if (removed)
{
if (!EdgeExtensions.IsSelfEdge<TVertex, TEdge>(edge))
this.adjacentEdges[edge.Target].Remove(edge);
this.edgeCount--;
Contract.Assert(this.edgeCount >= 0);
this.OnEdgeRemoved(edge);
return true;
}
else
return false;
}
public event EdgeAction<TVertex, TEdge> EdgeRemoved;
protected virtual void OnEdgeRemoved(TEdge args)
{
var eh = this.EdgeRemoved;
if (eh != null)
eh(args);
}
public int RemoveEdgeIf(EdgePredicate<TVertex, TEdge> predicate)
{
List<TEdge> edges = new List<TEdge>();
foreach (var edge in this.Edges)
{
if (predicate(edge))
edges.Add(edge);
}
return this.RemoveEdges(edges);
}
public int RemoveEdges(IEnumerable<TEdge> edges)
{
int count = 0;
foreach (var edge in edges)
{
if (RemoveEdge(edge))
count++;
}
return count;
}
#endregion
#region IEdgeListGraph<Vertex,Edge> Members
public bool IsEdgesEmpty
{
get { return this.EdgeCount==0; }
}
public int EdgeCount
{
get { return this.edgeCount; }
}
public IEnumerable<TEdge> Edges
{
get
{
var edgeColors = new Dictionary<TEdge, GraphColor>(this.EdgeCount);
foreach (var edges in this.adjacentEdges.Values)
{
foreach(TEdge edge in edges)
{
GraphColor c;
if (edgeColors.TryGetValue(edge, out c))
continue;
edgeColors.Add(edge, GraphColor.Black);
yield return edge;
}
}
}
}
public bool ContainsEdge(TEdge edge)
{
var eqc = this.EdgeEqualityComparer;
foreach (var e in this.AdjacentEdges(edge.Source))
if (e.Equals(edge))
return true;
return false;
}
private bool ContainsEdgeBetweenVertices(IEnumerable<TEdge> edges, TEdge edge)
{
Contract.Requires(edges != null);
Contract.Requires(edge != null);
var source = edge.Source;
var target= edge.Target;
foreach (var e in edges)
if (this.EdgeEqualityComparer(e,source, target))
return true;
return false;
}
#endregion
#region IUndirectedGraph<Vertex,Edge> Members
public IEnumerable<TEdge> AdjacentEdges(TVertex v)
{
return this.adjacentEdges[v];
}
public int AdjacentDegree(TVertex v)
{
return this.adjacentEdges[v].Count;
}
public bool IsAdjacentEdgesEmpty(TVertex v)
{
return this.adjacentEdges[v].Count == 0;
}
#endregion
}
}