Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 프로젝트
- OS
- 자바
- DFS
- LEVEL2
- 백트래킹
- Java8
- 운영체제
- 모던자바
- algorithm
- 코틀린
- DP
- 알고리즘
- lambda
- baekjoon
- 네트워크
- programmers
- 백준
- java
- 스프링
- 그래프
- 프로그래머스
- Brute-force
- Spring
- BFS
- backtracking
- 자료구조
- back-end
- TDD
- kotlin
Archives
- Today
- Total
목록1197 (1)
요깨비's LAB
[백준, 그래프 이론, Java] P.1197 최소 스패닝 트리 (크루스칼)
import java.util.ArrayList; import java.util.List; import java.util.Scanner; class Vertax { Vertax parent; int id; boolean isVisited; public Vertax(int id) { this.id = id; parent = this; isVisited = false; } public Vertax findParent(Vertax v) { if (v.id == v.parent.id) { return v; } return v = findParent(v.parent); } public long merge(Vertax to, long total, int cost) { Vertax from = findParent(p..
알고리즘(Java)/그래프 이론
2021. 4. 16. 19:00