Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Best-first search
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
==Greedy BeFS== Using a [[greedy algorithm]], expand the first successor of the parent. After a successor is generated:<ref>https://www.cs.cmu.edu/afs/cs/project/jair/pub/volume28/coles07a-html/node11.html#modifiedbestfs Greedy Best-First Search when EHC Fails, Carnegie Mellon</ref> # If the successor's heuristic is better than its parent, the successor is set at the front of the queue (with the parent reinserted directly behind it), and the loop restarts. # Else, the successor is inserted into the queue (in a location determined by its heuristic value). The procedure will evaluate the remaining successors (if any) of the parent. Below is a [[pseudocode]] example of this algorithm, where '''queue''' represents a priority queue which orders nodes based on their heuristic distances from the goal. This implementation keeps track of visited nodes, and can therefore be used for [[Graph (discrete mathematics)#Undirected graph|undirected graphs]]. It can be modified to retrieve the path. '''procedure''' GBS(start, target) '''is''': mark start as visited add start to queue '''while''' queue '''is''' '''not''' empty '''do''': current_node ← vertex of queue with min distance to target remove current_node from queue '''foreach''' neighbor n of current_node '''do''': '''if''' n '''not''' '''in''' visited '''then''': '''if''' n '''is''' target: '''return''' n '''else''': mark n as visited add n to queue '''return''' failure
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)