Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 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 methodStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started