Conversation
@sepehrashs@gmail.com
| 8. Conclusion | ||
|
|
||
|
|
||
| ## Introduction |
| It is not an optimal algorithm in general but if cost of steps be equal to one, this algorithm would be optimal. | ||
|
|
||
| As it is obvious this algorithm has some pros and cons. The benefit of it is that it is accurate and easy to run and implement. But if the goal be at depth 21, this algorithm would take hundreds of years to find the solution. | ||
|
|
| * Cutoff failure value: It defines no solution for the problem within a given depth limit. | ||
|
|
||
| Look at the example: | ||
|  |
There was a problem hiding this comment.
You Can Describe The Example To Improve The Quality Of Your Lecture Note
|
|
||
| **Space Complexity** | ||
|
|
||
| The space complexity of IDDFS will be O(bd). |
|
|
||
|
|
||
|
|
||
| ## Conclusion |
|
|
||
|
|
||
|
|
||
|
|
There was a problem hiding this comment.
Please Add References, For Example : You Can Add Where You Read Articles About The Topic, or You can mention where students can find more information about the topic
|
|
||
| The iterative search algorithm is useful uninformed search when search space is large, and depth of goal node is unknown. | ||
|
|
||
| **Example** |
|
|
||
| > O(b^d(1 – 1/b)^-2) | ||
|
|
||
| Note: In this algorithm because of the fact that we want to avoid space problems, we won't store any data therefore we may have to repeat some actions but it won't trouble us because time complexity still remains O( b^d ), similar to BFS. |
|
|
||
|
|
||
|
|
||
|
|
|
|
||
| # Contents | ||
|
|
||
| 1. Introduction |
| 2. Breadth-first Search | ||
| 3. Uniform cost search | ||
| 4. Depth-first Search | ||
| 5. Depth-limited Search |
| @@ -0,0 +1,255 @@ | |||
|
|
|||
| # Uninformed Search | |||
There was a problem hiding this comment.
Please explain what the term "Search" means exactly.
There was a problem hiding this comment.
You should explain in a way that everyone could read the article and understand the concept.
| Iterative deepening depth-first search | ||
| Bidirectional search | ||
| Conclusion | ||
|
|
There was a problem hiding this comment.
Please add tree search and graph search into your content.
|
|
||
| **Completeness** | ||
|
|
||
| This algorithm is complete is ifthe branching factor is finite. |
|
|
||
|
|
||
|
|
||
|
|
There was a problem hiding this comment.
Full review:
- Please fulfill the Introduction. ( You can explain terms like "Search", "Optimality", etc in your introduction.
- You can add methods I've mentioned in your table of content.
- Please make your table of contents clickable.
- Discuss a little about your examples.
| * Standard failure value: It indicates that problem does not have any solution. | ||
| * Cutoff failure value: It defines no solution for the problem within a given depth limit. | ||
|
|
||
| Look at the example: |
There was a problem hiding this comment.
The position of the example's image could be better.
No description provided.