Linked Exercises

Suppose you have a SimpleListADT interface that has the following public methods: A LinkedSimpleList implementation of the SimpleListADT might start as follows:
public class LinkedSimpleList implements SimpleListADT
{
   private front;

   //... methods ...
}
Given this framework, write methods addToEnd, removeLast, and removeNth.