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)