Question: Project 2 - Multithreaded Sorting Application Write a multithreaded sorting program that works as follows: Alist of integers is divided into two smaller lists of
Project Multithreaded Sorting Application
Write a multithreaded sorting program that works as follows: Alist of
integers is divided into two smaller lists of equal size. Two separate
threads which we will term sorting threads sort each sublist using a
sorting algorithm of your choice. The two sublists are then merged by a
third threada merging threadwhich merges the two sublists into a
single sorted list.
Because global data are shared across all threads, perhaps the easiest
way to set up the data is to create a global array. Each sorting thread will
work on one half of this array. A second global array of the same size as
the unsorted integer array will also be established. The merging thread
will then merge the two sublists into this second array. Graphically, this
program is structured as in Figure
Figure Multithreaded sorting.
This programming project will require passing parameters to each of the
sorting threads. In particular, it will be necessary to identify the starting
index from which each thread is to begin sorting. Refer to the
instructions in Project for details on passing parameters to a thread.
The parent thread will output the sorted array once all sorting threads
have exited.
Change the above program to have sort threads and merge threads.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
