Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Algorithms3 #17

Merged
merged 2 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions docs/courses/algorithms.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ has_children: true

## Introduction

- [정렬 알고리즘](sort.md)
- [정렬 알고리즘](algorithms/sort.md)

- 버블 정렬
- 선택 정렬
Expand All @@ -32,7 +32,7 @@ has_children: true
- 최소값과 최대값 동시에 찾기
- i번째 크기 원소 찾기

- [탐색 알고리즘](search.md)
- [탐색 알고리즘](algorithms/search.md)

- 순차 탐색
- 전진 이동법
Expand All @@ -45,15 +45,15 @@ has_children: true

- 트라이 (Trie)

- [우선순위 큐와 힙](heap.md)
- [우선순위 큐와 힙](algorithms/heap.md)

- 우선순위 큐
- 힙
- 이진 힙
- 최대/최소 힙
- 힙 정렬

- [해시](hash.md)
- [해시](algorithms/hash.md)

- 해시테이블
- 해시
Expand All @@ -70,7 +70,7 @@ has_children: true
- 2차 탐사 방법
- 체이닝 방법

- [그래프](graph.md)
- [그래프](algorithms/graph.md)

- 그래프 표현
- 인접 행렬
Expand All @@ -93,47 +93,47 @@ has_children: true
- 네트워크 유량
- 포드-풀카슨 알고리즘

- [문자열 탐색](string_matching.md)
- [문자열 탐색](algorithms/string_matching.md)

- 단순 비교
- 라빈-카프 알고리즘
- KMP 알고리즘
- 보이어-무어 알고리즘
- 아호-코라식 알고리즘

- [데이터 압축](compression.md)
- [데이터 압축](algorithms/compression.md)

- RLE (run-length encoding)
- 허프만 코딩
- 동적 (적응형) 허프만 코딩

- [탐욕 알고리즘](greedy.md)
- [탐욕 알고리즘](algorithms/greedy.md)

- 개요
- 거스름돈 줄이기 문제
- 크루스칼 알고리즘 (review)
- 다익스크라 알고리즘 (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)

- 개요
2 changes: 1 addition & 1 deletion docs/courses/algorithms/back_tracking.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: Back_tracking
parent: Algorithms
grand_parent: Courses
---
Expand Down
2 changes: 1 addition & 1 deletion docs/courses/algorithms/compression.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: Compression
parent: Algorithms
grand_parent: Courses
---
Expand Down
2 changes: 1 addition & 1 deletion docs/courses/algorithms/divide_conquer.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: Divide_conquer
parent: Algorithms
grand_parent: Courses
---
Expand Down
2 changes: 1 addition & 1 deletion docs/courses/algorithms/dynamic_programming.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: Dynamic_programming
parent: Algorithms
grand_parent: Courses
---
Expand Down
2 changes: 1 addition & 1 deletion docs/courses/algorithms/graph.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: Graph
parent: Algorithms
grand_parent: Courses
---
Expand Down
2 changes: 1 addition & 1 deletion docs/courses/algorithms/greedy.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: Greedy
parent: Algorithms
grand_parent: Courses
---
Expand Down
2 changes: 1 addition & 1 deletion docs/courses/algorithms/hash.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: Hash
parent: Algorithms
grand_parent: Courses
---
Expand Down
2 changes: 1 addition & 1 deletion docs/courses/algorithms/heap.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: Heap
parent: Algorithms
grand_parent: Courses
---
Expand Down
2 changes: 1 addition & 1 deletion docs/courses/algorithms/np.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: Np
parent: Algorithms
grand_parent: Courses
---
Expand Down
2 changes: 1 addition & 1 deletion docs/courses/algorithms/search.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: Search
parent: Algorithms
grand_parent: Courses
---
Expand Down
2 changes: 1 addition & 1 deletion docs/courses/algorithms/sort.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: Sort
parent: Algorithms
grand_parent: Courses
---
Expand Down
2 changes: 1 addition & 1 deletion docs/courses/algorithms/string_matching.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: AdaBoost
title: String_matching
parent: Algorithms
grand_parent: Courses
---
Expand Down