- Add a method
prependthat adds an element at the beginning of the list. - Add a method to the class
reversethat that reverses the order of the linked list. - Modify the link list to maintain the list in asending order (requires that the type supports the < operator)
- Make the list doubling linked. Change append and prepend as needed.
