public void zeitOfAlgorithmus(string path, String methode, bool directed)
        {
            string[] word = Regex.Split(path, "/");

            Console.WriteLine(word[word.LongLength - 1]);

            Algorithmus algorithmus = new Algorithmus();

            Graph graph = Parse.getGraphByFile(path, directed);

            DateTime befor = System.DateTime.Now;

            if (methode == "cycleCancelling")
            {
                algorithmus.cycleCancelling(graph);
            }
            else
            {
                algorithmus.successiveShortestPath(graph);
            }

            DateTime after = System.DateTime.Now;
            TimeSpan ts    = after.Subtract(befor);

            // Console.WriteLine("\n\n{0}s \n", ts.TotalSeconds);
            Console.WriteLine("\n", ts.TotalSeconds);
        }