Question
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.
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
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