When.com Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. If your search tree's branching factor is finite but its depth is unbounded, then DFS isn't "complete". What that means is that it may not ever find the goal node even if it exists.

  3. search - Why is depth-limited is preferable to minimax without...

    ai.stackexchange.com/questions/35367/why-is-depth-limited-is-preferable-to...

    The depth-limited minimax will achieve the same output as minimax without depth-limited, but can sometimes use less memory. Why is the above answer is wrong? I mean, don't both of these algorithms always achieve the same output, and because the depth-limited minimax doesn't always explore all the states this makes it use less memory?

  4. What is the space complexity of iterative deepening search?

    ai.stackexchange.com/questions/24478/what-is-the-space-complexity-of-iterative...

    Why the space complexity of depth-first search is O(bm)? Hot Network Questions Does the duty to rescue in German Law (StGB §323c) only apply for accidents, or also for deliberate acts?

  5. graphs - Does iterative deepening depth-first search expand at...

    ai.stackexchange.com/questions/37341/does-iterative-deepening-depth-first...

    Iterative deepening depth-first search expands at most twice as many nodes as breadth-first search since it only needs to keep track of the current generation of nodes, and not all visited nodes. $\endgroup$ –

  6. I know uninformed algorithms, like depth-first search and breadth-first search, do not store or maintain a list of unsearched nodes like how informed search algorithms do. But the main problem with uninformed algorithms is they might keep going deeper, theoretically to infinity if an end state is not found but they exist ways to limit the ...

  7. minimax - Why do iterative deepening search start from the root...

    ai.stackexchange.com/questions/37188/why-do-iterative-deepening-search-start...

    Normally in minimax (or any form of depth-first search really), we do not store nodes in memory for the parts we have already searched. The tree is only implicit, it's not stored anywhere explicitly. We typically implement these algorithms in a recursive memory.

  8. One of the more standard assumptions when first introducing new students to search algorithms (like Depth-First Search, Breadth-First Search which you've also likely heard about or will hear about soon, etc.) is indeed that our goal is to find some sort of solution, and only find one.

  9. Why is depth-first search an artificial intelligence algorithm?

    ai.stackexchange.com/questions/22993/why-is-depth-first-search-an-artificial...

    I believe that in the book Artificial Intelligence: A Modern Approach (which you may be reading at the moment) they introduce DFS and Breadth-First Search this way, as a first milestone before reaching more complex algorithms like A*. Now, you may be wondering why such search algorithms should be considered AI.

  10. Breadth-First Search needs memory to remember "where it was" in all the different branches, whereas Depth-First Search completes an entire path first before recursing back -- which doesn't really require any memory other than the stack trace.

  11. Should minimax with alpha beta pruning depth be an odd number?

    ai.stackexchange.com/questions/34537/should-minimax-with-alpha-beta-pruning...

    Whenever I use an odd number for depth, my algorithm works fine. But when I use an even number, the bottom node because a min node and AI looses the game. Can anyone confirm that when using MAX as the root node, the depth should always be an odd number? AFAIK, it's never said explicitly in the algorithm's description. Thanks