Exemplo n.º 1
0
        public void GraphTraverseWithRecursion()
        {
            GraphNode <int> node = BuildGraph();

            GraphTraversal <int> t = new GraphTraversal <int>();

            t.Traverse(node);
        }