From ccc5d0f6bc3418fb64cdbbb82413b2e1c1d0b907 Mon Sep 17 00:00:00 2001 From: Sharon Gao Date: Thu, 25 Oct 2018 21:15:22 -0400 Subject: [PATCH] Fix(guide): Add link to Priority Queue documentation --- guide/english/algorithms/graph-algorithms/dijkstra/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/guide/english/algorithms/graph-algorithms/dijkstra/index.md b/guide/english/algorithms/graph-algorithms/dijkstra/index.md index e810bb02fa..64f07ea3a1 100644 --- a/guide/english/algorithms/graph-algorithms/dijkstra/index.md +++ b/guide/english/algorithms/graph-algorithms/dijkstra/index.md @@ -90,4 +90,7 @@ public class Dijkstra { System.out.println(Arrays.toString(dist)); } } -``` \ No newline at end of file +``` + +## More Information: +- [Priority Queue Documentation](https://docs.oracle.com/javase/7/docs/api/java/util/PriorityQueue.html)