Question: Write a C++ program to copy the elements of an array into another by replacing every element with largest element to its right plus smallest
Write a C++ program to copy the elements of an array into another by replacing every element with largest element to its right plus smallest element to its left. In case of first element, take the smallest to its left as zero and in case of last element, take largest element to its right as zero. For example, if the given array is: 1 5 8 9 6 3 5 7 2 2, the modified array should be 9 10 10 8 8 8 8 3 3 1.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
