https://github.com/mirror4s/deque
A double ended queue implementation based on linked list and array.
https://github.com/mirror4s/deque
data-structures-and-algorithms deque java
Last synced: about 1 year ago
JSON representation
A double ended queue implementation based on linked list and array.
- Host: GitHub
- URL: https://github.com/mirror4s/deque
- Owner: MirRoR4s
- License: mit
- Created: 2024-11-20T05:47:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-21T01:13:50.000Z (over 1 year ago)
- Last Synced: 2025-02-07T19:16:54.380Z (over 1 year ago)
- Topics: data-structures-and-algorithms, deque, java
- Language: Java
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deque
A double ended queue implementation based on list and array.
## prior acknowledge
- [CS61B lecture 4 and lecture 5 and lecture 6](https://sp18.datastructur.es/index.html)
## reference
- [CS61B project 1A: Data Structures](https://sp18.datastructur.es/materials/proj/proj1a/proj1a)
- [gradescope](https://www.gradescope.com/courses/20666/assignments/85897/submissions/226366558)