Skip to content

Commit 5cb7e38

Browse files
docs: add README.tr-TR.md (trekhleb#833)
* docs: added Turkish translation of Heap (data structures) algorithm * docs: removed other languages section from translation file Co-authored-by: Oleksii Trekhleb <[email protected]>
1 parent 3372666 commit 5cb7e38

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

src/data-structures/heap/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ _Read this in other languages:_
55
[_Русский_](README.ru-RU.md),
66
[_日本語_](README.ja-JP.md),
77
[_Français_](README.fr-FR.md),
8-
[_Português_](README.pt-BR.md)
8+
[_Português_](README.pt-BR.md),
9+
[_Türkçe_](README.tr-TR.md)
910

1011
In computer science, a **heap** is a specialized tree-based
1112
data structure that satisfies the heap property described
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Heap (data-structure)
2+
3+
Bilgisayar biliminde, **yığın (heap)** aşağıda açıklanan özellikleri karşılayan ağaç tabanlı(tree-based) özel bir veri yapısıdır.
4+
5+
*min heap*, Eğer `P`, `C`'nin üst düğümü ise, `P`'nin anahtarı (değeri) `C`'nin anahtarından (değerinden) küçük veya ona eşittir.
6+
7+
![MinHeap](https://upload.wikimedia.org/wikipedia/commons/6/69/Min-heap.png)
8+
9+
*max heap*, `P`'nin anahtarı `C`'nin anahtarından büyük veya eşittir.
10+
11+
![Heap](https://upload.wikimedia.org/wikipedia/commons/3/38/Max-Heap.svg)
12+
13+
Yığının (Heap) "en üstündeki" ebeveyni olmayan düğüme kök düğüm (root node) denir.
14+
15+
## Referanslar
16+
17+
- [Wikipedia](https://en.wikipedia.org/wiki/Heap_(data_structure))
18+
- [YouTube](https://www.youtube.com/watch?v=t0Cq6tVNRBA&index=5&t=0s&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)

0 commit comments

Comments
 (0)