diff --git a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/110-linked-list.md b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/110-linked-list.md index 3b57e1d82..124930269 100644 --- a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/110-linked-list.md +++ b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/110-linked-list.md @@ -5,3 +5,4 @@ The **Linked List** in Rust is a sequence of nodes where each node consists of a Learn more from the following links: - [@official@LinkedList in std::collections - Rust](https://doc.rust-lang.org/std/collections/struct.LinkedList.html) +- [@opensource@Too Many Linked Lists](https://rust-unofficial.github.io/too-many-lists/)