Please see problem statement/slides and have a look at the TODOs.
-
Implement the class
Node
and define appropriate attributes and methods A Node holds data (=TrainCar
object) and a reference to thenext
Node -
Implement the following methods in
LinkedTrain
:size()
,isEmpty()
addFirst(String data)
,add(String data)
removeFirst()
,removeLast()
- Add another type of train car to your program
- Implement additional methods for the LinkedList (e.g., removeAt(), sort(), ...)