본문 바로가기

Algorithm

BFS(Breadth First Search)

반응형

== BFS(Breadth First Search) == 



          




- BFS 알고리즘은 어디에 쓰나?

  - 최근접 경로를 구할 때 dijkstra 알고리즘을 쓰는데, 이것이 바로 BFS 알고리즘을 사용한다. 

  - 페이스북에서 알수도 있는 친구 등..




source-code : The-G


reference : 상상개발자


반응형

'Algorithm' 카테고리의 다른 글

Permutation(순열) Algorithm  (0) 2017.10.06
Dijkstra Algorihm  (0) 2017.10.06
DFS(Depth First Search) / DFS to find cycle in graph  (0) 2017.10.04
자료구조 Graph  (0) 2017.10.04
자료구조 Binary_Search_Tree  (0) 2017.10.03