-
Notifications
You must be signed in to change notification settings - Fork 296
Expand file tree
/
Copy pathIGraph.cs
More file actions
62 lines (50 loc) · 1.54 KB
/
IGraph.cs
File metadata and controls
62 lines (50 loc) · 1.54 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Advanced.Algorithms.DataStructures.Graph
{
/// <summary>
/// UnDirected graph. (When implemented on a directed graphs only outgoing edges are considered as Edges).
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IGraph<T>
{
bool IsWeightedGraph { get; }
int VerticesCount { get; }
IGraphVertex<T> ReferenceVertex { get; }
bool ContainsVertex(T key);
IGraphVertex<T> GetVertex(T key);
IEnumerable<IGraphVertex<T>> VerticesAsEnumberable { get; }
bool HasEdge(T source, T destination);
IGraph<T> Clone();
}
public interface IGraphVertex<T>
{
T Key { get; }
IEnumerable<IEdge<T>> Edges { get; }
IEdge<T> GetEdge(IGraphVertex<T> targetVertex);
}
public interface IEdge<T>
{
W Weight<W>() where W : IComparable;
T TargetVertexKey { get; }
IGraphVertex<T> TargetVertex { get; }
}
internal class Edge<T, C> : IEdge<T> where C : IComparable
{
private object weight;
internal Edge(IGraphVertex<T> target, C weight)
{
this.TargetVertex = target;
this.weight = weight;
}
public T TargetVertexKey => TargetVertex.Key;
public IGraphVertex<T> TargetVertex { get; private set; }
public W Weight<W>() where W : IComparable
{
return (W)weight;
}
}
}