Skip to content

Pitt-0401/0401-lab09-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

LAB09 - Code Template

Please see problem statement/slides and have a look at the TODOs.

Implement a linked list from scratch in Java

  1. Implement the class Node and define appropriate attributes and methods A Node holds data (= TrainCar object) and a reference to the next Node

  2. Implement the following methods in LinkedTrain: size(), isEmpty() addFirst(String data), add(String data) removeFirst(), removeLast()

Optional: Challenge

  • Add another type of train car to your program
  • Implement additional methods for the LinkedList (e.g., removeAt(), sort(), ...)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages