Question: Use ONLY back(), empty(), pop_back(), push_back() of class vector and a while loop to create reverseVector function. Please make sure to use only the following

Use ONLY back(), empty(), pop_back(), push_back() of class vector and a while loop to create reverseVector function. Please make sure to use only the following choices. Thanks Use ONLY back(), empty(), pop_back(), push_back() of class vector and a while

Use visual studio to create a new C++ project. Then, Write a C++ program that implements the following: Use the class vector from the standard library to constructs and initialize a vector object. Impalement a function called ReverseVector that accepts a vector as a parameter. Then, ReverseVector will reverse the given vector. Then it will save the reversed vector into a new vector object and return it. The ReverseVector function have to utilize ONLY the following: 1. 2. back(), empty(), pop_back(), push_back() of class vector and a while loop. For example, the given vector is: FruitesVector ["apples", "bananas", "pineapples", "peaches", raspberries", "blackberries", "strawberries"] The reversed is: Reversed_FruitesVectorl"strawberries", "blackberries", "raspberries", "peaches", "pineapples", "bananas", "apples'"] 3. 4. Implement PrintVector function that prints the contents of a vector. Implement a main function to test your method

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!