Does java have an indexed minimum priority queue?

后端 未结 2 585
无人共我
无人共我 2021-02-08 10:07

I need it for an implementation of Dijkstra\'s algorithm, and I do have my own implementation but documenting my code would be easier with java\'s own classes.

相关标签:
2条回答
  • 2021-02-08 10:35

    What do you mean 'indexed'? Priority queue doesn't support indexing, unless it won't be queue any more.

    Java supports standard Priority Queue like C++ STL. It can be found in java.util namespace as PriorityQueue.

    0 讨论(0)
  • 2021-02-08 10:48

    No, Java standard library has no such data structure. I think most people use this: http://algs4.cs.princeton.edu/24pq/IndexMinPQ.java.html

    0 讨论(0)
提交回复
热议问题