コード例 #1
0
 public void Init()
 {
     _graphBuilder = new HwDirectedGraphBuilder2("directed_graph_02.txt");
     _graph = _graphBuilder.Build();
     _dfs = new Dfs(_graph);
 }
コード例 #2
0
 public void Init()
 {
     _graphBuilder = new UndirectedGraphBuilder("undirected_graph_lecture_03.txt");
     _graph = _graphBuilder.Build();
     _dfs = new Dfs(_graph);
 }