An ordered list collection keeps its Comparable elements in the order specified by their compareTo method, independent of the order in which they are added to the collection. Create an OrderedList interface that contains the following operations:
Implement a StudentDatabase class which implements OrderedList with a linked list. The student database contains each student’s name, student ID, and year. You should include a display class which prints the students in the database in order by Student Number.
Use the train example from class and the chapter 14 source code from blackboard as an example.