1 / 4

Breadth-First Searches

Breadth-First Searches. Introduction to AI. Breadth-First Search. Using a breadth-first strategy we expand the root level first and then we expand all those nodes (i.e. those at level 1) before we expand any nodes at level 2.

dchapman
Download Presentation

Breadth-First Searches

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Breadth-First Searches Introduction to AI

  2. Breadth-First Search • Using a breadth-first strategy we expand the root level first and then we expand all those nodes (i.e. those at level 1) before we expand any nodes at level 2. • Or to put it another way, all nodes at level d are expanded before any nodes at level d+1. Function BREADTH-FIRST-SEARCH(problem) returns a solution or failure Return GENERAL-SEARCH(problem,ENQUEUE-AT-END) • To illustrate this search pattern we will be using an example node set containing 26 nodes (states). The initial state will be node A, and the goal state is node L. Press space to see the example node set.

  3. The example node set Initial state A A B C D E F Goal state G H I J K L L M N O P Q R S T U V W X Y Z Press space to see a BFS of the example node set

  4. Node A is removed from the queue. Each revealed node is added to the END of the queue. Press space to continue the search. This node is then expanded to reveal further (unexpanded) nodes. Press space We begin with our initial state: the node labeled A. Press space to continue Node B is expanded then removed from the queue. The revealed nodes are added to the END of the queue. Press space. We then backtrack to expand node C, and the process continues. Press space The search then moves to the first node in the queue. Press space to continue. A A B B C C D D E E F F G G H H I I J J K K L L L L L L M N O P Node L is located and the search returns a solution. Press space to end. Q R S T U Press space to begin the search Press space to continue the search Press space to continue the search Press space to continue the search Press space to continue the search Press space to continue the search Press space to continue the search Press space to continue the search Press space to continue the search Press space to continue the search Size of Queue: 1 Size of Queue: 7 Size of Queue: 9 Size of Queue: 0 Size of Queue: 10 Size of Queue: 6 Size of Queue: 8 Size of Queue: 5 Size of Queue: 0 Queue: J, K, L, M, N, O, P, Q, R, S Queue: H, I, J, K, L, M, N, O, P, Q Queue: Empty Queue: K, L, M, N, O, P, Q, R, S, T Queue: C, D, E, F, G, H Queue: F, G, H, I, J, K, L, M, N Queue: B, C, D, E, F Queue: E, F, G, H, I, J, K, L Queue: I, J, K, L, M, N, O, P, Q, R Queue: D, E, F, G, H, I, J Queue: G, H, I, J, K, L, M, N, O, P Queue: Empty Queue: L, M, N, O, P, Q, R, S, T, U Queue: A Nodes expanded: 5 Nodes expanded: 3 Nodes expanded: 0 Nodes expanded: 6 Nodes expanded: 1 Nodes expanded: 4 Nodes expanded: 11 Nodes expanded: 2 Nodes expanded: 10 Nodes expanded: 9 Nodes expanded: 8 Nodes expanded: 7 Current Action: Backtracking Current Action: Expanding Current Action: Expanding Current Action: Backtracking Current Action: Backtracking Current Action: Expanding Current Action: Backtracking Current Action: Backtracking FINISHED SEARCH Current Action: Expanding Current Action: Expanding Current Action: Backtracking Current Action: Expanding Current Action: Backtracking Current Action: Current Action: Expanding Current Action: Expanding Current Action: Backtracking Current Action: Backtracking Current Action: Backtracking Current Action: Expanding Current Action: Expanding Current level: 1 Current level: 1 Current level: 0 Current level: 1 Current level: 2 Current level: 0 Current level: 1 Current level: 2 Current level: 1 Current level: 2 Current level: 2 Current level: 1 Current level: 0 Current level: 0 Current level: 1 Current level: 0 Current level: 1 Current level: 1 Current level: 1 Current level: 0 Current level: 1 Current level: 1 Current level: 2 Current level: n/a Current level: 1 Current level: 0 Current level: 0 Current level: 2 BREADTH-FIRST SEARCH PATTERN

More Related