diff --git a/docs/courses/algorithms.md b/docs/courses/algorithms.md index 98574f6..3a94389 100644 --- a/docs/courses/algorithms.md +++ b/docs/courses/algorithms.md @@ -19,7 +19,7 @@ has_children: true ## Introduction -- [정렬 알고리즘](sort.md) +- [정렬 알고리즘](algorithms/sort.md) - 버블 정렬 - 선택 정렬 @@ -32,7 +32,7 @@ has_children: true - 최소값과 최대값 동시에 찾기 - i번째 크기 원소 찾기 -- [탐색 알고리즘](search.md) +- [탐색 알고리즘](algorithms/search.md) - 순차 탐색 - 전진 이동법 @@ -45,7 +45,7 @@ has_children: true - 트라이 (Trie) -- [우선순위 큐와 힙](heap.md) +- [우선순위 큐와 힙](algorithms/heap.md) - 우선순위 큐 - 힙 @@ -53,7 +53,7 @@ has_children: true - 최대/최소 힙 - 힙 정렬 -- [해시](hash.md) +- [해시](algorithms/hash.md) - 해시테이블 - 해시 @@ -70,7 +70,7 @@ has_children: true - 2차 탐사 방법 - 체이닝 방법 -- [그래프](graph.md) +- [그래프](algorithms/graph.md) - 그래프 표현 - 인접 행렬 @@ -93,7 +93,7 @@ has_children: true - 네트워크 유량 - 포드-풀카슨 알고리즘 -- [문자열 탐색](string_matching.md) +- [문자열 탐색](algorithms/string_matching.md) - 단순 비교 - 라빈-카프 알고리즘 @@ -101,13 +101,13 @@ has_children: true - 보이어-무어 알고리즘 - 아호-코라식 알고리즘 -- [데이터 압축](compression.md) +- [데이터 압축](algorithms/compression.md) - RLE (run-length encoding) - 허프만 코딩 - 동적 (적응형) 허프만 코딩 -- [탐욕 알고리즘](greedy.md) +- [탐욕 알고리즘](algorithms/greedy.md) - 개요 - 거스름돈 줄이기 문제 @@ -115,25 +115,25 @@ has_children: true - 다익스크라 알고리즘 (review) - 허프만 코딩 (review) -- [분할 정복](divide_conquer.md) +- [분할 정복](algorithms/divide_conquer.md) - 개요 - 합병 정렬 - 거듭 제곱 계산법 - 피보나치 수열 -- [동적 계획법](dynamic_programming.md) +- [동적 계획법](algorithms/dynamic_programming.md) - 개요 - 피보나치 수열 - 최장 공통 부분 수열 -- [백트래킹](back_tracking.md) +- [백트래킹](algorithms/back_tracking.md) - 개요 - 미로 탈출 문제 - 8개의 퀸 문제 -- [NP-완전 문제](np.md) +- [NP-완전 문제](algorithms/np.md) - 개요 diff --git a/docs/courses/algorithms/back_tracking.md b/docs/courses/algorithms/back_tracking.md index 3d4456f..ea5b3ab 100644 --- a/docs/courses/algorithms/back_tracking.md +++ b/docs/courses/algorithms/back_tracking.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: Back_tracking parent: Algorithms grand_parent: Courses --- diff --git a/docs/courses/algorithms/compression.md b/docs/courses/algorithms/compression.md index 0a4e1c5..103c16b 100644 --- a/docs/courses/algorithms/compression.md +++ b/docs/courses/algorithms/compression.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: Compression parent: Algorithms grand_parent: Courses --- diff --git a/docs/courses/algorithms/divide_conquer.md b/docs/courses/algorithms/divide_conquer.md index ccd8468..2db5041 100644 --- a/docs/courses/algorithms/divide_conquer.md +++ b/docs/courses/algorithms/divide_conquer.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: Divide_conquer parent: Algorithms grand_parent: Courses --- diff --git a/docs/courses/algorithms/dynamic_programming.md b/docs/courses/algorithms/dynamic_programming.md index 4221355..40e2b40 100644 --- a/docs/courses/algorithms/dynamic_programming.md +++ b/docs/courses/algorithms/dynamic_programming.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: Dynamic_programming parent: Algorithms grand_parent: Courses --- diff --git a/docs/courses/algorithms/graph.md b/docs/courses/algorithms/graph.md index 0e22fde..473851d 100644 --- a/docs/courses/algorithms/graph.md +++ b/docs/courses/algorithms/graph.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: Graph parent: Algorithms grand_parent: Courses --- diff --git a/docs/courses/algorithms/greedy.md b/docs/courses/algorithms/greedy.md index 540817b..b8962b7 100644 --- a/docs/courses/algorithms/greedy.md +++ b/docs/courses/algorithms/greedy.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: Greedy parent: Algorithms grand_parent: Courses --- diff --git a/docs/courses/algorithms/hash.md b/docs/courses/algorithms/hash.md index 3738875..78b4a7d 100644 --- a/docs/courses/algorithms/hash.md +++ b/docs/courses/algorithms/hash.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: Hash parent: Algorithms grand_parent: Courses --- diff --git a/docs/courses/algorithms/heap.md b/docs/courses/algorithms/heap.md index 6886c40..e1f8df6 100644 --- a/docs/courses/algorithms/heap.md +++ b/docs/courses/algorithms/heap.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: Heap parent: Algorithms grand_parent: Courses --- diff --git a/docs/courses/algorithms/np.md b/docs/courses/algorithms/np.md index 3cb52dd..fb1aa74 100644 --- a/docs/courses/algorithms/np.md +++ b/docs/courses/algorithms/np.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: Np parent: Algorithms grand_parent: Courses --- diff --git a/docs/courses/algorithms/search.md b/docs/courses/algorithms/search.md index 5cf7f47..200db2c 100644 --- a/docs/courses/algorithms/search.md +++ b/docs/courses/algorithms/search.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: Search parent: Algorithms grand_parent: Courses --- diff --git a/docs/courses/algorithms/sort.md b/docs/courses/algorithms/sort.md index 60a4088..ec5b6f0 100644 --- a/docs/courses/algorithms/sort.md +++ b/docs/courses/algorithms/sort.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: Sort parent: Algorithms grand_parent: Courses --- diff --git a/docs/courses/algorithms/string_matching.md b/docs/courses/algorithms/string_matching.md index 5209fff..c277b77 100644 --- a/docs/courses/algorithms/string_matching.md +++ b/docs/courses/algorithms/string_matching.md @@ -1,6 +1,6 @@ --- layout: default -title: AdaBoost +title: String_matching parent: Algorithms grand_parent: Courses ---