Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/arodr967/orderednodeslist
- Owner: arodr967
- Created: 2015-04-03T17:28:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-11T02:00:00.000Z (over 9 years ago)
- Last Synced: 2023-03-01T03:55:40.316Z (over 1 year ago)
- Language: Java
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.