Modify BFS to prioritise cost not depth. expand node with lowest path cost. could be "deep".
This is the same as Dijkstra’s algorithm.
Can do this in algo by using heaps
Informed: No
Time: \(O(b^{?})\)
Space: \(O(b^{?})\)
Complete: Yes
Optimal: Yes