Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 322 Bytes

MergeSort.md

File metadata and controls

22 lines (12 loc) · 322 Bytes

PatikaDEV

Proje 2 [16,21,11,8,12,22] -> Merge Sort

Yukarıdaki dizinin sort türüne göre aşamalarını yazınız.

[16,21,11] [8,12,22]

[16] [21,11] [8] [12,22]

[16] [21] [11] [8] [12] [22]

[16] [11,21] [8] [12,22]

[11,16,21] [8,12,22]

[8,11,12,16,21,22]

Big-O gösterimini yazınız.

O(n*logn)