You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#This is a comparison of merge sort algorithm with multi-threaded merge sort algorithm
About
This repository implements Parallel Merge Sort using multithreading to speed up the sorting process. By dividing the array into smaller subarrays and sorting them concurrently, the algorithm leverages multiple processor cores to improve performance, especially on large datasets.