本文整理汇总了C#中IEdge.GetAdjacentEdgesSharedWith方法的典型用法代码示例。如果您正苦于以下问题:C# IEdge.GetAdjacentEdgesSharedWith方法的具体用法?C# IEdge.GetAdjacentEdgesSharedWith怎么用?C# IEdge.GetAdjacentEdgesSharedWith使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IEdge
的用法示例。
在下文中一共展示了IEdge.GetAdjacentEdgesSharedWith方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetLongestLink
private int GetLongestLink(IEdge currentEdge, IVertex useVertex, HashSet<IEdge> visitedEdges)
{
if (visitedEdges.Contains(currentEdge))
{
return 0; // if already visited
}
if (useVertex.Campus != null && useVertex.Campus.Color != Color)
{
return 1; // if other player's campus is in the way
}
visitedEdges.Add(currentEdge);
int max = 0;
foreach (IEdge edge in currentEdge.GetAdjacentEdgesSharedWith(useVertex))
{
if (edge.Color != Color)
continue;
// use the vertex on the other side of the edge
int path = GetLongestLink(edge,
edge.Adjacent.Vertices.First(v => v != useVertex),
visitedEdges);
if (max < path)
{
max = path;
}
}
visitedEdges.Remove(currentEdge);
return max + 1;
}