I'm just trying to implement the best first search and I am not sure if there are any LIFO or FIFO properties for this algorithm. If so which one should I use? Do I need to use it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
See http://en.wikipedia.org/wiki/Best-first_search#Algorithm_.5B3.5D for this pseudocode:
Step 1 says "remove the best node" - this implies the use of a Priority Queue. |
|||||||
|
|
It uses a queue, so you should use FIFO. |
|||||
|