Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- UE_LOG
- UML관련
- 언리얼가비지컬렉터
- 애셋로드
- 데이터애셋
- 람다
- C++최적화
- 정렬
- moreeffectiveC++
- enumasByue
- C++
- UE4 커스텀로그
- 자료구조
- dataasset
- 약참조
- 강참조
- 언리얼엔진구조체
- UELOG
- unorder_map
- stl
- 프로그래머스
- map
- 스마트포인터
- 람다사용정렬
- 델리게이트
- 정렬알고리즘
- 알고리즘
- BFS
- 선택정렬
- 크리티컬섹션
Archives
- Today
- Total
기억을 위한 기록들
[백준 1260 : DFS와 BFS] - C++ 본문
#include <iostream>
#include <map>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;
int VerNumber = 0;
int LineNumber = 0;
int StartNumber = 0;
int CheckArr[10001];
vector<int> node[1001];
void BFS() {
queue<int> q;
q.push(StartNumber);
int target = 0;
int index = 1;
while (!q.empty())
{
target = q.front();
q.pop();
int nodeSize = node[target].size();
cout << target << " ";
for (int i = 0; i < nodeSize; i++)
{
int NextTarget = node[target][i];
if ( CheckArr[NextTarget] == 0)
{
CheckArr[NextTarget] = 1;
q.push(NextTarget);
}
}
}
cout << "\n";
}
void DFS(int p )
{
cout << p << " ";
CheckArr[p] = 1;
int nodesize = node[p].size();
for (int i = 0; i < nodesize; i++)
{
int cur = node[p][i];
if (CheckArr[cur] == 0)
{
DFS(cur);
}
}
}
int main() {
cin >> VerNumber >> LineNumber >> StartNumber;
int input1 = 0;
int input2 = 0;
for (int i = 0; i < LineNumber; i++)
{
cin >> input1 >> input2;
node[input1].push_back(input2);
node[input2].push_back(input1);
sort(node[input1].begin(), node[input1].end());
sort(node[input2].begin(), node[input2].end());
}
//DFS
CheckArr[StartNumber] = 1;
DFS(StartNumber);
cout << "\n";
//clear
for (int i = 0; i < 10000; i++) {
CheckArr[i] = 0;
}
//BFS
CheckArr[StartNumber] = 1;
BFS();
return 0;
}
'Coding Test - cpp' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 다음 큰 숫자 (0) | 2021.03.29 |
---|---|
[프로그래머스 lv 2 ] - N개의 최소공배수 (0) | 2021.03.29 |
[프로그래머스 Lv2/C++] 주식가격 (0) | 2020.12.31 |
[C++] 소수 구하기 (에라토스테네스의 체) (0) | 2020.11.26 |
코딩 게임 - The Gift (C++) (0) | 2020.07.27 |