Skip to content

Tomas-Kraus/shipmonk-sortedlist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

ShipMonk Task: SortedLinkedList

Implement a library providing SortedLinkedList (linked list that keeps values sorted). It should be able to hold string or int values, but not both. Try to think about what you'd expect from such library as a user in terms of usability and best practices, and apply those.

Solution

List follows java.util.List API, but is simplified to contain just small subset of its methods:

  • add
  • remove
  • size
  • iterator

About

Simple sorted Linked List

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages