Objectives
- Discuss templating in general terms
- Implement a templated linked list
We will implement a templated version of a linked list class. This will allow us to store any data type in the linked list while only writing the code for a linked list one time. First, we will develop a linked list class. Then we will create a templated version of that class.