Add Korean translation. (#644)

* Translate the Heap README to Korean.

* Translate Priority Queue's README to Korean

* Translate Kruskal Algorithm's README into Korean.

* fix typo

* Translate the Dijkstra README to Korean.

Co-authored-by: cckn <pds@enitt.co.kr>
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
This commit is contained in:
DS Park
2022-01-28 05:00:45 +09:00
committed by GitHub
parent 677862540e
commit 3fa19670f2
7 changed files with 75 additions and 5 deletions

View File

@@ -1,13 +1,19 @@
# 힙 (자료구조)
컴퓨터 사이언스에서 힙은 특수한 트리구조의 데이터 구조로 다음과 같은 특성을 갖고 있습니다.
컴퓨터 과학에서의 **힙**은 아래에 설명된 힙 속성을 만족하는 전문화된 트리 기반 데이터구조니다.
*최소 힙* 에서는 만약 `P``C`부모노드일 경우, `P` 키(값)는 `C` 키보다 작거나 동일합니다.
*최소 힙*에서 `P``C`상위 노드라면 `P` 키(값)는 `C` 키보다 작거나 같습니다.
![MinHeap](https://upload.wikimedia.org/wikipedia/commons/6/69/Min-heap.png)
- *최대 힙* 에서 `P` 키는 `C` 키보다 크거나 동일합니다.
*최대 힙*에서 `P` 키는 `C` 키보다 크거나 같습니다.
![Heap](https://upload.wikimedia.org/wikipedia/commons/3/38/Max-Heap.svg)
- 힙의 "상단" 노드에는 부모노드가 존재하지 않으며, 루트노드라고 부릅니다.
상위 노드가 없는 힙의 "상단"에 있는 노드를 루트 노드라고 니다.
## 참조
- [Wikipedia](<https://en.wikipedia.org/wiki/Heap_(data_structure)>)
- [YouTube](https://www.youtube.com/watch?v=t0Cq6tVNRBA&index=5&t=0s&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)

View File

@@ -0,0 +1,12 @@
# 우선 순위 큐
컴퓨터 과학에서 **우선 순위 큐**는 일반 큐 또는 스택 데이터 구조와 같은 추상 데이터 유형이지만, 여기서 각 요소에는 "우선 순위"가 연결됩니다.
우선 순위 큐에서는 우선 순위가 높은 요소가 낮은 요소 앞에 제공됩니다. 두 요소가 동일한 우선 순위를 가질 경우 큐의 순서에 따라 제공됩니다.
우선 순위 큐는 종종 힙을 사용하여 구현되지만 개념적으로는 힙과 구별됩니다. 우선 순위 대기열은 "리스트(list)" 또는 "맵(map)"과 같은 추상적인 개념입니다;
리스트가 링크드 리스트나 배열로 구현될 수 있는 것처럼 우선 순위 큐는 힙이나 정렬되지 않은 배열과 같은 다양한 다른 방법으로 구현될 수 있습니다.
## 참조
- [Wikipedia](https://en.wikipedia.org/wiki/Priority_queue)
- [YouTube](https://www.youtube.com/watch?v=wptevk0bshY&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8&index=6)

View File

@@ -5,7 +5,8 @@ _Read this in other languages:_
[_Русский_](README.ru-RU.md),
[_日本語_](README.ja-JP.md),
[_Français_](README.fr-FR.md),
[_Português_](README.pt-BR.md)
[_Português_](README.pt-BR.md),
[_한국어_](README.ko-KR.md)
In computer science, a **priority queue** is an abstract data type
which is like a regular queue or stack data structure, but where