https://github.com/erhant/too-many-lists
A Rust tutorial where they make you write many different linked lists.
https://github.com/erhant/too-many-lists
linked-list rust tutorial
Last synced: 8 months ago
JSON representation
A Rust tutorial where they make you write many different linked lists.
- Host: GitHub
- URL: https://github.com/erhant/too-many-lists
- Owner: erhant
- Created: 2023-07-29T10:48:42.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-19T20:40:40.000Z (over 2 years ago)
- Last Synced: 2025-01-13T06:43:20.589Z (about 1 year ago)
- Topics: linked-list, rust, tutorial
- Language: Rust
- Homepage: https://rust-unofficial.github.io/too-many-lists/index.html
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Too Many Lists
This is my implementation for a Rust programming tutorial called [Too Many Lists](https://rust-unofficial.github.io/too-many-lists/index.html), where you literally write linked lists but things get more advanced as you go on.
- [**First**](https://rust-unofficial.github.io/too-many-lists/first.html): A Bad Singly-Linked Stack
- [**Second**](https://rust-unofficial.github.io/too-many-lists/second.html): An Ok Singly-Linked Stack
- [**Third**](https://rust-unofficial.github.io/too-many-lists/third.html): A Persistent Singly-Linked Stack
- [**Fourth**](https://rust-unofficial.github.io/too-many-lists/fourth.html): A Bad but Safe Doubly-Linked Deque
- [**Fifth**](https://rust-unofficial.github.io/too-many-lists/fifth.html): An Ok Unsafe Singly-Linked Queue
- [**Sixth**](https://rust-unofficial.github.io/too-many-lists/sixth.html): A Production-Quality Unsafe Doubly-Linked Deque