We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f66464 commit fd8a700Copy full SHA for fd8a700
csharp/BfsTest/Algorithm/Graph/Bfs.cs
@@ -46,23 +46,23 @@ namespace Algorithm.Graph
46
public sealed class BfsGraphAdapter
47
{
48
/// <summary>
49
- ///
+ /// 返回与节点node相连的第一条边的编号,无边时返回Nil
50
/// </summary>
51
public FirstEdgeAdapter FirstOf { get; set; }
52
53
+ /// 返回下一条边的编号,无边时返回Nil
54
55
public NextEdgeAdapter NextOf { get; set; }
56
57
+ /// 返回指向节点的编号,无边时返回Nil
58
59
public EdgeToAdapter DestinationOf { get; set; }
60
61
+ /// 返回节点node的编号为edge的边的长度
62
63
public EdgeLengthAdapter LengthOf { get; set; }
64
65
66
67
public EdgeContainAdapter ContainOf { get; set; }
68
}
0 commit comments