Exemplo n.º 1
0
        public void AddEdge(T vertexOne, T vertexTwo)
        {
            if (vertexOne == null)
            {
                throw new ArgumentNullException(nameof(vertexOne));
            }
            if (vertexTwo == null)
            {
                throw new ArgumentNullException(nameof(vertexTwo));
            }

            bool v2Index = Nodes.ContainsKey(vertexTwo);
            bool v1Index = Nodes.ContainsKey(vertexOne);

            if (!v1Index)
            {
                UndirectedGraphNode <T> nodeOne = new UndirectedGraphNode <T>(vertexOne);
                Nodes.Add(vertexOne, nodeOne);
            }

            if (!v2Index)
            {
                UndirectedGraphNode <T> nodeTwo = new UndirectedGraphNode <T>(vertexTwo);
                Nodes.Add(vertexTwo, nodeTwo);
            }


            Nodes[vertexTwo].AddNeighbor(Nodes[vertexOne]);
        }
Exemplo n.º 2
0
        public UndirectedGraph(T initialNodeData)
        {
            Nodes = new Dictionary <T, UndirectedGraphNode <T> >();
            UndirectedGraphNode <T> initialNode = new UndirectedGraphNode <T>(initialNodeData);

            Nodes.Add(initialNodeData, initialNode);
            NumberOfComponents = 0;
        }
Exemplo n.º 3
0
 public void AddNeighbor(UndirectedGraphNode <T> neighborToAdd)
 {
     if (!m_Neighbors.ContainsKey(neighborToAdd.Data))
     {
         m_Neighbors.Add(neighborToAdd.Data, neighborToAdd);
         neighborToAdd.AddNeighbor(this);
     }
 }
Exemplo n.º 4
0
        public void AddVertex(T vertex)
        {
            bool v2Index = Nodes.ContainsKey(vertex);

            if (!v2Index)
            {
                UndirectedGraphNode <T> newNode = new UndirectedGraphNode <T>(vertex);
                Nodes.Add(vertex, newNode);
            }
        }
Exemplo n.º 5
0
 private void InternalDfs(Dictionary <T, UndirectedGraphNode <T> > nodes, UndirectedGraphNode <T> node, Func <UndirectedGraphNode <T>, bool> inspectFunc)
 {
     if (inspectFunc(node))
     {
         return;
     }
     foreach (var neighbor in node.GetNeighbors())
     {
         if (!neighbor.Value.IsVisited)
         {
             InternalDfs(nodes, neighbor.Value, inspectFunc);
         }
     }
 }
Exemplo n.º 6
0
        /// <summary>
        /// Generic BFS function. Can be used to solve any problem that requires BFS, just plug in the inspectionFunc.
        /// </summary>
        /// <param name="inspectFunc">Must return true if the search is completed and no more nodes need to be checked</param>
        /// <param name="startId">Starting node, by default it is 0.</param>
        public void Bfs(Func <UndirectedGraphNode <T>, bool> inspectFunc, bool countComponents)
        {
            if (Nodes.Count == 0)
            {
                return;
            }

            Queue <UndirectedGraphNode <T> > nodeQueue = new Queue <UndirectedGraphNode <T> >();

            foreach (var undirectedGraphNode in Nodes)
            {
                if (!undirectedGraphNode.Value.IsVisited)
                {
                    if (countComponents)
                    {
                        NumberOfComponents++;
                    }
                    nodeQueue.Enqueue(undirectedGraphNode.Value);
                    undirectedGraphNode.Value.IsVisited = true;
                    while (nodeQueue.Count != 0)
                    {
                        UndirectedGraphNode <T> currentNode = nodeQueue.Dequeue();

                        if (inspectFunc != null && inspectFunc(currentNode))
                        {
                            return;
                        }

                        foreach (var neighbor in currentNode.GetNeighbors())
                        {
                            if (!neighbor.Value.IsVisited)
                            {
                                neighbor.Value.IsVisited = true;
                                nodeQueue.Enqueue(neighbor.Value);
                            }
                        }
                    }
                }
            }
        }
Exemplo n.º 7
0
 public UndirectedGraphNode(UndirectedGraphNode <T> initialNeighbor, T data) : this(data)
 {
     initialNeighbor.m_Neighbors.Add(data, this);
 }