Question: In C++ Write a function template called List_Insert. This function will take as input, 3 parameters: 1. An STL list 2. The position of the
In C++ Write a function template called List_Insert. This function will take as input, 3 parameters:
1. An STL list
2. The position of the insertion
3. The value to be inserted
List_Insert will insert a value into a list of any data type. Be sure that this function can insert any valid value into any valid position correctly. This would include the beginning and the end of the list. This would also include lists that have a size of 0. If the position is invalid, the function will output an error message to the console screen. Demonstrate this function working with 2 different types of STL lists a list of integers and a list of characters.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
