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 |
Tags
- list
- C# Contains
- 알고리즘
- 호스트
- 백준
- 네트워크
- InsertRange
- C# Find
- List 찾기
- Tostring 사용법
- List 정렬
- C++
- c#
- BFS
- 기본 게이트웨이
- 네트워크 용어
- List 추가
- AddRange
- c# list
- 서브넷 마스크
- OSI 3계층
- 호스트 주소
- TCP/IP
- list 사용법
- DP
- List 제거
- IP주소
- 서브넷
- Parse 사용법
- Visual Studio
Archives
- Today
- Total
목록DFS (1)
CodeLabs

using System; using System.Collections.Generic; using System.Linq; namespace _1260 { class Program { static int n, m, v; static int[] visited = new int[1001]; static int[,] arr = new int[1001, 1001]; static void DPS(int v) { Console.Write(v + " "); visited[v] = 1; for(int i=1; i
백준/1000 ~
2023. 7. 9. 18:33