Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/attentiveness/spirallinkedlist
https://github.com/attentiveness/spirallinkedlist
android data-structures java kotlin linkedlist
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/attentiveness/spirallinkedlist
- Owner: attentiveness
- License: gpl-3.0
- Created: 2020-02-22T03:14:09.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-22T03:17:06.000Z (almost 5 years ago)
- Last Synced: 2024-11-08T13:26:10.311Z (about 2 months ago)
- Topics: android, data-structures, java, kotlin, linkedlist
- Language: Kotlin
- Size: 28.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spiral Linked List
A linked list that supports storage of multiple types## Intro
Different elements are stored in a linked list, and each type of element will form an independent column set, and elements of the same type may not be directly connected. The last element of each column named `head node`.![](images/spirallinkedlist.png)
After the elements are stored in the list, you can directly pop out the last element that matches a specified type
![](images/poplast.png)