示例#1
0
        public void BFS_Test()
        {
            var graph = GraphSeeder.GetTestStructure();

            BFS bfs = new BFS();

            bfs.Search(graph);
        }
示例#2
0
        public void DFS_Test()
        {
            var graph = GraphSeeder.GetTestStructure();

            DFS bfs = new DFS();

            bfs.Search("People.aspx", graph);
        }