Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/arodr967/orderednodeslist

A java class which implements a generic ordered list. The ordered list is one in which the items on the list appear in (ascending) order. When a new item is added, it is inserted into the list in its proper position, so there is never a need to "sort" the list.
https://github.com/arodr967/orderednodeslist

Last synced: 19 days ago
JSON representation

A java class which implements a generic ordered list. The ordered list is one in which the items on the list appear in (ascending) order. When a new item is added, it is inserted into the list in its proper position, so there is never a need to "sort" the list.

Awesome Lists containing this project

README

        

# OrderedNodesList
A java class which implements a generic ordered list. The ordered list is one in which the items on the list appear in (ascending) order. When a new item is added, it is inserted into the list in its proper position, so there is never a need to "sort" the list.