Пример #1
0
 private void ConstructPathDfs(Node node)
 {
     ExploredNodes.Add(node);
     if (node == FinishNode)
     {
         FoundPath = true;
         return;
     }
     foreach (Node adjNode in Graph.GetAdjacents(node).Where(n => !ExploredNodes.Contains(n)))
     {
         Path.Add(adjNode);
         ConstructPathDfs(adjNode);
         if (FoundPath)
         {
             break;
         }
         Path.Remove(adjNode);
     }
 }
Пример #2
0
        public override void PerformSearch()
        {
            while (Frontier.Count > 0)
            {
                INode node = Frontier.Pop();
                ExploredNodes.Push(node);

                if (node.IsTarget())
                {
                    SuccessNode = node;
                    return;
                }

                INode[] nextNodes = node.NextNodes();

                foreach (INode n in nextNodes)
                {
                    if (!ExploredNodes.Contains(n) && !Frontier.Contains(n))
                    {
                        Frontier.Push(n);
                    }
                }
            }
        }
Пример #3
0
        public override void PerformSearch()
        {
            while (Frontier.Count > 0)
            {
                INode node = Frontier.Pop();
                // we might be back in a parent, don't re-push it into explored
                if (!ExploredNodes.Contains(node))
                {
                    ExploredNodes.Push(node);
                }

                if (node.IsTarget())
                {
                    SuccessNode = node;
                    return;
                }

                // we get the next nodes for our node - given backtracking some of these might have been explored
                INode[] nextNodes = node.NextNodes();

                // the best next node will be the one with the fewest valid, unexplored moves from it
                INode bestNextNode      = null;
                int   bestNextNodeMoves = int.MaxValue;

                INode nextNode;
                int   nextNodeMoves;
                for (int i = 0; i < nextNodes.Length; i++)
                {
                    // for each next node from our current node that we haven't explored, we will look at the number of moves from that node
                    nextNode = nextNodes[i];

                    if (nextNode.IsTarget()) // shortcircuit
                    {
                        SuccessNode = nextNode;
                        return;
                    }
                    // this is an optimisation to pre-recognise leaves that aren't successful as explored
                    if (nextNode.IsLeaf() && !ExploredNodes.Contains(nextNode))
                    {
                        ExploredNodes.Push(nextNode);
                    }

                    // we want the best node we can see out of the next nodes, based on how many moves each has
                    nextNodeMoves = nextNode.NextNodes().Where(n => !ExploredNodes.Contains(n)).Count();
                    if (nextNodeMoves > 0 && nextNodeMoves < bestNextNodeMoves)
                    {
                        bestNextNodeMoves = nextNodeMoves;
                        bestNextNode      = nextNode;
                    }
                }

                // backtrack if we didn't find a node to move forward to
                if (bestNextNode == null)
                {
                    Frontier.Push(node.Parent);
                }
                // if we did find a node, place it onto the stack
                else if (!ExploredNodes.Contains(bestNextNode) && !Frontier.Contains(bestNextNode))
                {
                    Frontier.Push(bestNextNode);
                }
            }
        }