Beispiel #1
0
        static void DriverCodeGraph()
        {
            // Create a list of vertices using the Vertex<T> class
            List <Vertex <string> > vertices = new List <Vertex <string> >
                                               (
                new Vertex <string>[]
            {
                new Vertex <string>("Los Angeles"),
                new Vertex <string>("San Francisco"),
                new Vertex <string>("Las Vegas"),
                new Vertex <string>("Seattle"),
                new Vertex <string>("Austin"),
                new Vertex <string>("Portland")
            }
                                               );

            // Establish edges; Ex. Los Angeles -> San Francisco, Las Vegas, Portland
            vertices[0].AddEdges(new List <Vertex <string> >(new Vertex <string>[]
            {
                vertices[1], vertices[2], vertices[5]
            }));

            vertices[1].AddEdges(new List <Vertex <string> >(new Vertex <string>[]
            {
                vertices[0], vertices[3], vertices[5]
            }));

            vertices[2].AddEdges(new List <Vertex <string> >(new Vertex <string>[]
            {
                vertices[0], vertices[1], vertices[4]
            }));

            vertices[3].AddEdges(new List <Vertex <string> >(new Vertex <string>[]
            {
                vertices[1], vertices[5]
            }));

            vertices[4].AddEdges(new List <Vertex <string> >(new Vertex <string>[]
            {
                vertices[2]
            }));

            vertices[5].AddEdges(new List <Vertex <string> >(new Vertex <string>[]
            {
                vertices[1], vertices[3]
            }));

            // Create graph using the UndirectedGenericGraph<T> class
            UndirectedGenericGraph <string> testGraph = new UndirectedGenericGraph <string>(vertices);

            // Check to see that all neighbors are properly set up
            foreach (Vertex <string> vertex in vertices)
            {
                Console.WriteLine(vertex.ToString());
            }

            // Test searching algorithms
            testGraph.DepthFirstSearch(vertices[0]);
            //testGraph.BreadthFirstSearch(vertices[0]);
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            var la = new Vertex <string>("Los Angeles");
            var sf = new Vertex <string>("San Francisco");
            var lv = new Vertex <string>("Las Vegas");
            var se = new Vertex <string>("Seattle");
            var au = new Vertex <string>("Austin");
            var po = new Vertex <string>("Portland");

            var testGraph = new UndirectedGenericGraph <string>();

            // la <=> sf, lv, po
            testGraph.AddPair(la, sf);
            testGraph.AddPair(la, lv);
            testGraph.AddPair(la, po);

            // sf <=> se, po
            testGraph.AddPair(sf, se);
            testGraph.AddPair(sf, po);

            // lv <=> au
            testGraph.AddPair(lv, au);

            // se <=> po
            testGraph.AddPair(se, po);

            // Check to see that all neighbors are properly set up
            foreach (var vertex in testGraph.Vertices)
            {
                System.Diagnostics.Debug.WriteLine(vertex.ToString());
            }

            // Test searching algorithms
            System.Diagnostics.Debug.WriteLine("D F S result");
            //testGraph.DepthFirstSearch(la, (m) => System.Diagnostics.Debug.WriteLine(m));

            System.Diagnostics.Debug.WriteLine("B F S result");
            testGraph.BreadthFirstSearch(la, (m) => System.Diagnostics.Debug.WriteLine(m));
        }