반응형
swea 1251 인접리스트
-
[SW Expert Academy] 1251. 하나로 ( 인접리스트 & 인접행렬 )Algorithm/Source Code 2022. 8. 25. 22:16
adjList.java public class SWEA1251_하나로_프림인접리스트 { // 정점 중심 static class Node implements Comparable{ int vertex; // 노드 long weight; // 가중치 public Node(int vertex, long weight) { super(); this.vertex = vertex; this.weight = weight; } @Override public int compareTo(Node o) { return Long.compare(this.weight, o.weight); } } public static void main(String[] args) throws IOException { // 0825 오전 라이브 강의 ..