Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bilalkarakollu/merge-sort-algorithm
https://github.com/bilalkarakollu/merge-sort-algorithm
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bilalkarakollu/merge-sort-algorithm
- Owner: bilalkarakollu
- Created: 2022-04-07T18:00:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-04-07T18:01:48.000Z (over 2 years ago)
- Last Synced: 2023-09-10T17:38:02.150Z (over 1 year ago)
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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]