Design your own templated linked list class to hold a series of values
Your Own Linked List TemplateDesign your own templated linked list class to hold a series of values in ascending order. The class should have member functions for inserting, deleting, and printing nodes. Don’t forget to add a destructor that destroys the list. Demonstrate the class with a driver program.Exceptions:The delete node method should throw an exception if the linked list is empty.Scoring breakdown:——————Insertion method: 2 […]