Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed
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, call it "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 from left to right Thus, for example, if the array passed to the function looks like this: 8 9 10 . 5.8 1 2.6 1 9.1 3.4 1 7.0 5.1 1 8.810.3 1-4.1 18.0 1 2.71etc. 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: 7 5.8 2.619.1 1 0.00 1 0.00 13.4 1 7.015.11 8.810.31 2.7 I etc. The values 0.00 in cells 3 and 4 indicate that we don't care what numbers are in those cells whern 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 ler 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: 4.1 lease enter the left index, right index, and distance values: 7 2 26 9.1 3.4 .1 8.8 .3 2.7 rocess returned e (exe) execution time: 40.484 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

Database Reliability Engineering Designing And Operating Resilient Database Systems

Authors: Laine Campbell, Charity Majors

1st Edition

978-1491925942

More Books

Students also viewed these Databases questions