Skip to content

Merge Sort is an efficient sorting algorithm that uses the "Divide and Conquer" approach. It divides a large array into smaller subarrays, sorts them recursively, and merges them back together. It has a time complexity of 𝑂 ( 𝑛 log ⁑ 𝑛 ) O(nlogn) in the worst case, making it suitable for large datasets.

Notifications You must be signed in to change notification settings

tolgahanacar/mergeSort

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

2 Commits
Β 
Β 
Β 
Β 

Repository files navigation

mergeSort

Merge Sort is an efficient sorting algorithm that uses the "Divide and Conquer" approach. It divides a large array into smaller subarrays, sorts them recursively, and merges them back together. It has a time complexity of 𝑂 ( 𝑛 log ⁑ 𝑛 ) O(nlogn) in the worst case, making it suitable for large datasets.

About

Merge Sort is an efficient sorting algorithm that uses the "Divide and Conquer" approach. It divides a large array into smaller subarrays, sorts them recursively, and merges them back together. It has a time complexity of 𝑂 ( 𝑛 log ⁑ 𝑛 ) O(nlogn) in the worst case, making it suitable for large datasets.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published