참고 :
알고리즘
1. 유형 분류
구현
Greedy Algorithm
DFS / BFS
정렬
이진 탐색
그래프
최단 경로 알고리즘
DP
2. 기초 구현
Greedy Algorithm
“현재 상태에서 최적의 선택”
대부분 정렬을 먼저 수행한 뒤 해결
https://velog.io/@kyunghwan1207/그리디-알고리즘Greedy-Algorithm-탐욕법
DFS / BFS :
https://velog.io/@jxlhe46/알고리즘-DFSBFS
최단 경로 알고리즘
Dijkstra Algorithm
Floyd-Warshall Algorithm
Bellman-Ford Algorithm
3. Tip
3.1. General