Skip to content

Commit fd6afb9

Browse files
committed
다익스트라
1 parent b79e216 commit fd6afb9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

6/dijkstra/Main.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ public int compareTo(Node arg0) {
1616
return this.W - arg0.W; // 오름차순 정렬
1717
}
1818
}
19+
/**
20+
* BOJ 1753 최단경로
21+
*/
1922
public class Main{
2023
public static void main(String[] args) throws IOException{
2124
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

0 commit comments

Comments
 (0)