Skip to content

Yusuficandan/MergeSort

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

MergeSort

MergeSort Projesi

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

1 - 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]

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

O(nlogn)

About

MergeSort Projesi

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published