Example #1
0
        static void Main(string[] args)
        {
            DepthFirstAlgorithm b    = new DepthFirstAlgorithm();
            Employee            root = b.BuildEmployyeGraph();

            Console.WriteLine("Traverse Graph\n----------");
            b.Traverse(root);

            Console.WriteLine("\nSearch in Graph\n---------------");
            Employee e = b.Search(root, "Eva");

            Console.WriteLine(e == null ? "Employee not found" : e.name);
            e = b.Search(root, "Brain");
            Console.WriteLine(e == null ? "Employee not found" : e.name);
            e = b.Search(root, "Soni");
            Console.WriteLine(e == null ? "Employee not found" : e.name);
            Console.ReadKey();
        }