From 38afa2631f247adc9066069beb605c9014650f3d Mon Sep 17 00:00:00 2001 From: Abdelrahman Omar <128975938+abd0-omar@users.noreply.github.com> Date: Sat, 17 Aug 2024 13:58:54 +0300 Subject: [PATCH] Add linked list resource (#6608) Add "Too Many Linked Lists" book to Rust LinkedList resources --- .../101-language-basics/103-data-structures/110-linked-list.md | 1 + 1 file changed, 1 insertion(+) 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/)