예제 #1
0
        void ShowReverseDeleteAlgorythm(WeightedGraph graph)
        {
            Clear();
            var alg = new Algorythms();

            WriteLine(graph + "\n");
            WriteLine(alg.ReverseDeleteAlgorythm(graph));
            ReturnIntoStartWindow();
        }
예제 #2
0
        void ShowKruskalsAlgorythm(WeightedGraph network)
        {
            Clear();
            var alg = new Algorythms();

            WriteLine(network + "\n");
            WriteLine(alg.KruskalsAlgorythm(network));
            ReturnIntoStartWindow();
        }