Skip to content

iremmr/Merge-Sort-Projesi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Merge-Sort-Projesi

[16,21,11,8,12,22] 1.Yukarıdaki dizinin sort türüne göre aşamalarını yazınız. 2.Big-O gösterimini yazınız.

1. [16,21,11]     [8,12,22]
[16]  [21,11]    [8,12]  [22]
[16] [21] [11]   [8] [12] [22]
   [16,21] [8,11] [12,22]
    [8,11,16,21] [12,22]
     [8,11,12,16,21,22]
2. 2^x = n
logn =x
O(logn)

patika.dev profilim

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published