Skip to content

Given n numbers, sort the numbers using merge sort concurrently

Notifications You must be signed in to change notification settings

saiharshavellanki/Concurrent-Merge-Sort

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Input : integer n followed by n values
Method:
- Recursively make two child processes, one for the left half, one of the right half. If the number of elements in the array for a process is less than 5,
perform a selection sort.
- The parent of the two children then merges the result and returns back to the parent and so on.

About

Given n numbers, sort the numbers using merge sort concurrently

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages