일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- JavaScript
- 자바스크립트
- 리액트
- 디자인 패턴
- 프로그래머스 자바
- websocket
- 프로그래머스
- codesandbox
- 프로그래밍 언어론
- 리액트 훅
- React JS
- 자바
- 컴퓨터 네트워크
- vanillaJS
- NextJS
- react
- 자바 공부
- 백준
- useEffect
- react hook
- 코딩테스트 고득점 Kit 완전탐색
- 코틀린
- react firebase
- 데이터모델링과마이닝
- design pattern
- 장고
- Java
- 프로그래머스 완전탐색
- useState
- 코딩테스트 고득점 Kit
Archives
- Today
- Total
목록자료구조 (1)
기록하는 개발자
[백준][JAVA] 2667: 단지번호붙이기
import java.util.Scanner; import java.util.ArrayList; import java.util.Collections; public class Main { static int[][] checked; //확인 여부 static int[][] map; static int dx[] = {-1,1,0,0}; static int dy[] = {0,0,-1,1}; static int n, count; //정점, 간선개수 static ArrayList list = new ArrayList(); public static int dfs(int row, int col) { checked[row][col] = 1; //확인한 정점을 1로 초기화 for(int i=0;i=0 && ny>=0 &&..
Algorithm
2021. 7. 11. 16:01