티스토리 뷰
이진트리 넓이우선탐색(BFS)
#include <iostream>
#include <vector>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int Q[100], front=-1, back=-1, ch[10];
vector<int> map[10];
int main() {
freopen("input.txt", "rt", stdin);
int i, a, b, x;
for(i=1; i<=6; i++){
scanf("%d %d", &a, &b);
map[a].push_back(b);
map[b].push_back(a);
}
Q[++back]=1;
ch[1]=1;
while(front<back){
x=Q[++front];
printf("%d ", x);
for(i=0; i<map[x].size(); i++){
if(ch[map[x][i]]==0){
ch[map[x][i]]=1;
Q[++back]=map[x][i];
}
}
}
return 0;
}
그래프 최단거리
#include <iostream>
#include <vector>
#include <queue>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int ch[30], dis[30];
vector<int> map[10];
int main() {
freopen("input.txt", "rt", stdin);
int n, m, i, a, b, x;
vector<int> map[30];
queue<int> Q;
scanf("%d %d", &n, &m);
for(i=1; i<=m; i++){
scanf("%d %d", &a, &b);
map[a].push_back(b);
}
Q.push(1);
ch[1]=1;
while(!Q.empty()){
x=Q.front();
Q.pop();
for(i=0; i<map[x].size(); i++){
if(ch[map[x][i]]==0){
ch[map[x][i]]=1;
Q.push(map[x][i]);
dis[map[x][i]]=dis[x]+1;
}
}
}
for(i=2; i<=n; i++){
printf("%d : %d\n", i, dis[i]);
}
return 0;
}
'lecture > algorithm - c++' 카테고리의 다른 글
[c++] 최대힙, 최소힙 - priority_queue : 우선순위 큐 (0) | 2021.01.14 |
---|---|
[c++] 송아지 찾기, 공주구하기(queue) (0) | 2021.01.14 |
[c++] 최소비용(DFS: 인접행렬) (0) | 2021.01.12 |
[c++] 미로탐색, 경로탐색(DFS_인접리스트) (0) | 2021.01.10 |
[c++] 경로탐색(DFS), 인접행렬(가중치 방향그래프) (0) | 2021.01.09 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 알고리즘
- C++
- 최단경로
- 클래스
- 동적프로그래밍
- 이진탐색
- 입출력장치
- server side rendering
- client side rendering
- react
- Stack
- 인접리스트
- Java
- 운영체제
- 퀵정렬
- 배열
- 소프트웨어
- 재귀함수
- 교착상태
- 인접행렬
- stackframe
- 세마포어
- 병행프로세스
- 스텍
- C
- javascript
- 자료구조
- 구조체
- BFS
- dfs
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함