public void BFS_Test()
        {
            var graph = GraphSeeder.GetTestStructure();

            BFS bfs = new BFS();

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

            DFS bfs = new DFS();

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