Skip to content

Muslumsahin/PatikaDevAlgoritmaOdev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Insertion Sort Projesi

[22,27,16,2,18,6]
[2,27,16,22,18,6]
[2,6,16,22,18,27]
[2,6,16,18,22,27]

18 için time Complexity = Average Case

Big O Notation = O(n^2)

[7,3,5,8,2,9,4,15,6]
[2,3,5,8,7,9,4,15,6]
[2,3,4,8,7,9,5,15,6]
[2,3,4,5,7,9,8,15,6)
[2,3,4,5,6,9,8,15,7]

Merge Sort Projesi

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

(16,21,11) - (8,12,22)
(16,21) - (11) - (8,12) - (22)
(11,16,21) - (8,12,22)
(8,11,16,21,22)

Big O Notation = O(nlogn)

Binary Search Tree Projesi

(7,5,1,8,3,6,0,9,4,2)

          6
        5   7
      0       8
        2       9
      1   4
        3

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published