https://github.com/iambpn/arraylinkedlist
Implementation of Linked List with array as its value. An efficent alternative for the ArrayList.
https://github.com/iambpn/arraylinkedlist
algorithm datastructure
Last synced: 8 months ago
JSON representation
Implementation of Linked List with array as its value. An efficent alternative for the ArrayList.
- Host: GitHub
- URL: https://github.com/iambpn/arraylinkedlist
- Owner: iambpn
- Created: 2022-09-22T06:46:39.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-11T13:08:38.000Z (almost 3 years ago)
- Last Synced: 2025-04-11T22:17:46.998Z (8 months ago)
- Topics: algorithm, datastructure
- Language: TypeScript
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ArrayLinkedList
Implementation of Linked List with array as its value. An efficent alternative for the ArrayList. Implemented in TS as it was ment to implement in Low level languae.