I wrote a maze solving program which is supposed to support DFS, BFS, A*, Dijkstra's, and greedy algorithm. Anyway, I chose PriorityQueue for my frontier data structure since I thought a priority can behave like a queue, stack, or priority queue depends on the implementation of the comparator.
This is how I implemented my comparator to turn the priority queue into a queue:
/Since the "natural ordering" of a priority queue has the least element at the head and a conventional comparator returns -1 when the first is less than the second, the hacked comparator always return 1 so that the current (last) square will be placed at the tail (this should work recursively)/
public int compare(Square square1, Square square2)
{
return 1;
}
However, my solution for the maze was not optimal after I did a BFS.
The maze starts at top right corner with coordinate (35,1) and my program checks the left, then up, then down, then right neighbour. Here are the println I did:
polled out (35,1)
added (34,1)
added (35,2)
polled out (34,1)
added (33,1)
added (34,2)
polled out (35,2)
added (35,3)
polled out (33,1)
added (32,1)
added (33,2)
polled out (34,2)
add (34,3)
poll out (32,1)
......
Notice in a BFS (35,3) should be polled out before (32,1) since the former is added into the queue before the latter. What really confused me is that the data structure behaved like a queue--all new members were added from the back--until I added (32,1), which was placed at the head of the queue.
I thought my comparator should force the priority queue to put new comers in the back. What is even stranger to me is that the data structure changed its nature from a queue to a stack in the middle.
Many thanks to you guys ahead and sorry about my poor English, Sincerely, Sean