1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-01-17 22:28:32 +01:00

Fix link labels (#6122)

* Fix link labels

* Update src/data/roadmaps/rust/content/101-language-basics/103-data-structures/113-queue.md

---------

Co-authored-by: dsh <daniel.s.holdsworth@gmail.com>
This commit is contained in:
Jhonatan Mustiola 2024-07-10 04:10:04 -04:00 committed by GitHub
parent b48f81d98d
commit 680b2241e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -4,4 +4,4 @@ The **Linked List** in Rust is a sequence of nodes where each node consists of a
Learn more from the following links:
- [@article@LinkedList](https://doc.rust-lang.org/std/collections/struct.LinkedList.html)
- [@official@LinkedList in std::collections - Rust](https://doc.rust-lang.org/std/collections/struct.LinkedList.html)

View File

@ -4,4 +4,4 @@ A `Binary Heap` is a complete binary tree which is either Min Heap or Max Heap.
Learn more from the following links:
- [@article@BinaryHeap](https://doc.rust-lang.org/std/collections/struct.BinaryHeap.html)
- [@official@BinaryHeap](https://doc.rust-lang.org/std/collections/struct.BinaryHeap.html)

View File

@ -4,4 +4,4 @@ The **Stack** is a fundamental data structure in Rust, which is based on the pri
Learn more from the following links:
- [@article@Box, Stack and Heap](https://doc.rust-lang.org/rust-by-example/std/box.html)
- [@official@Box, Stack and Heap](https://doc.rust-lang.org/rust-by-example/std/box.html)

View File

@ -4,4 +4,4 @@ In Rust, a Queue is another important linear data structure which follows a part
Learn more from the following links:
- [@article@Queues](https://docs.rs/queues/latest/queues/)
- [@official@Queues](https://docs.rs/queues/latest/queues/)