Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

using C++ Exercise #1: Array Shifting Write a function named shift_right that takes as its arguments the following (1) an array of floating point values;

image text in transcribed

using C++

Exercise #1: Array Shifting Write a function named "shift_right" that takes as its arguments the following (1) an array of floating point values; (2) an integer, cal t"left", that tells the leftmost cell of the part of the array to be shifted; (3) an integer, call it"right", that tells the rightmost cell of the part of the array to be shifted; (4) a positive integer, call it "distance" that tells how many cells to shift by The function should make sure that left is less than or equal to right, and that distance is greater than zero. If either of these conditions fails, the function should return the value 1 to indicate an error. Otherwise it should shift by distance cells the contents of the array cells with subscripts running fromleft to right . Thus, for example, if the array passed to the function looks like this 2 5.82.61 9.1 3.417.0 5.1 18.8 0.3-41 8.0 2.7 etc. So if left has the value 3, right has the value 7, and distance has the value 2, then the function should shift the contents of cells 3,4,5,6, and 7 to the right by 2 cells, so that when the function returns, the array will have been changed so that it looks like this 2 5.82.69.1 0.00 0.00 3.4 7.0 5.1 8.8 0.32.7 etc. The values 0.00 in cells 3 and 4 indicate that we don't care what numbers are in those cells when the function returns (you can put any default values instead). Note that the contents of cells 8 and 9 have changed, but the contents of cell 10 is unchanged. The function need not take any precautions against the possibility that the cells will be shifted beyond the end of the array (the calling function should be careful not to let that happen). Write a main program that tests and validates the above developed function. Sample input / output: lease enter the number of values in the array: lease enter the values for your array: lease enter the left index, right index, and distance values: 3 7 2 2.6 8.8 2.7 rocess returned (x) execution time40.484 s ress any key to continue

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Time Series Databases New Ways To Store And Access Data

Authors: Ted Dunning, Ellen Friedman

1st Edition

1491914726, 978-1491914724

More Books

Students also viewed these Databases questions

Question

What is DDL?

Answered: 1 week ago