Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bilalkarakollu/merge-sort-algorithm


https://github.com/bilalkarakollu/merge-sort-algorithm

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

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

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

1. [16,21,11,8,12,22]
1. [16,21,11] - [8,12,22]
1. [16] - [21,11] - [8,12] - [22]
1. [16] - [21] - [11] - [8] - [12] - [22]
1. [16] - [11,21] - [8,12] - [22]
1. [11,16,21] - [8,12,22]
1. [8,11,12,16,21,22]