Question: write a program that finds the minumum and maximum value in std::vector using four threads. Each thread will calculate the minumum and maximum value of
write a program that finds the minumum and maximum value in std::vector using four threads. Each thread will calculate the minumum and maximum value of its quarter of the array. Place returns values in a new array, and execute function call once again over the entire resulting array to find minumum and maxulimum.
a) Create a function that will be called by each thread:
void min_max_value ( double& min, double& max, const int* pBegin, const in nElems);
b) Create a main function that will find and display the minumum and maximum value of the vector.
int main();
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
