mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2026-03-13 08:51:02 +08:00
Add Korean translation for data-structures Hash Table & Heap (#843)
* Create README.ko-KR.md * Create README.ko-KR.md * Update README.ko-KR.md * Update README.ko-KR.md * Update README.ko-KR.md * Update README.ko-KR.md
This commit is contained in:
13
src/data-structures/heap/README.ko-KR.md
Normal file
13
src/data-structures/heap/README.ko-KR.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# 힙 (자료구조)
|
||||
|
||||
컴퓨터 사이언스에서 힙은 특수한 트리구조의 데이터 구조로 다음과 같은 특성을 갖고 있습니다.
|
||||
|
||||
*최소 힙* 에서는 만약 `P`가 `C`의 부모노드일 경우, `P` 키(값)는 `C` 키보다 작거나 동일합니다.
|
||||
|
||||

|
||||
|
||||
- *최대 힙* 에서 `P` 키는 `C` 키보다 크거나 동일합니다.
|
||||
|
||||

|
||||
|
||||
- 힙의 "최상단" 노드에는 부모노드가 존재하지 않으며, 루트노드라고 부릅니다.
|
||||
Reference in New Issue
Block a user