예제 #1
0
파일: Graph.cs 프로젝트: pingzing/text-game
 public Graph(NodeCollection <T> nodeSet)
 {
     Nodes = nodeSet;
 }
예제 #2
0
 public GraphNode(T value, NodeCollection <T> neighbors)
 {
     Value     = value;
     Neighbors = neighbors;
 }