Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Consider the following function reverse, that attempts to reverse an array in place (i.e. without the use of additional storage). It does it by interchanging

Consider the following function reverse, that attempts to reverse an array in place (i.e. without the use of additional storage). It does it by interchanging the first and last elements, then the second and second from last etc. All of the interchanges are done by calling function interchange. Here are the two functions and a main program:

(SEE ATTACHMENT)image text in transcribed

  1. When I run the program, I expect to see the output reverse the array, but it doesnt. Why?

  2. What very simple change will fix it (so the program will print 3, 2, 1, ) and explain your change.

#include using namespace std; void interchange (int* x, int* y) { int temp; temp = *X; *x = *y; *y = temp; } = void reverse(int *ptr, int first, int last) { int *endptr; endptr ptr + last; for ( ptr += first; ptr

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