From f910756d353a03f4b81beea29301da9cb2f2ae35 Mon Sep 17 00:00:00 2001 From: Aman Yadav <99861840+aman-yadav-05@users.noreply.github.com> Date: Wed, 15 May 2024 11:23:46 +0530 Subject: [PATCH 1/3] Update 101-linked-lists.md Added a link to an article which helped me understand more about the concept of linked list. --- .../content/103-basic-data-structures/101-linked-lists.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md b/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md index 6af6f085d..ae1547d82 100644 --- a/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md +++ b/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md @@ -1,3 +1,5 @@ # Linked Lists -Linked Lists are a type of data structure used for storing collections of data. The data is stored in nodes, each of which contains a data field and a reference (link) to the next node in the sequence. Structurally, a linked list is organized into a sequence or chain of nodes, hence the name. Two types of linked lists are commonly used: singly linked lists, where each node points to the next node and the last node points to null, and doubly linked lists, where each node has two links, one to the previous node and another one to the next. Linked Lists are used in other types of data structures like stacks and queues. \ No newline at end of file +Linked Lists are a type of data structure used for storing collections of data. The data is stored in nodes, each of which contains a data field and a reference (link) to the next node in the sequence. Structurally, a linked list is organized into a sequence or chain of nodes, hence the name. Two types of linked lists are commonly used: singly linked lists, where each node points to the next node and the last node points to null, and doubly linked lists, where each node has two links, one to the previous node and another one to the next. Linked Lists are used in other types of data structures like stacks and queues. + +[A beginner's guide to linked-list](https://www.freecodecamp.org/news/how-linked-lists-work/) From f83ba31af5c62858ec64a3e62c4e7062dd9f4f5f Mon Sep 17 00:00:00 2001 From: Aman Yadav <99861840+aman-yadav-05@users.noreply.github.com> Date: Wed, 15 May 2024 12:32:54 +0530 Subject: [PATCH 2/3] added "learn more" and a youtube link along with the article. --- .../content/103-basic-data-structures/101-linked-lists.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md b/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md index ae1547d82..28e987221 100644 --- a/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md +++ b/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md @@ -2,4 +2,8 @@ Linked Lists are a type of data structure used for storing collections of data. The data is stored in nodes, each of which contains a data field and a reference (link) to the next node in the sequence. Structurally, a linked list is organized into a sequence or chain of nodes, hence the name. Two types of linked lists are commonly used: singly linked lists, where each node points to the next node and the last node points to null, and doubly linked lists, where each node has two links, one to the previous node and another one to the next. Linked Lists are used in other types of data structures like stacks and queues. -[A beginner's guide to linked-list](https://www.freecodecamp.org/news/how-linked-lists-work/) +
+Learn more from the following links: + +- [Linked List Explained: from Basics to Advanced](https://www.freecodecamp.org/news/how-linked-lists-work/) +- [Introduction To Linked List](https://youtu.be/Nq7ok-OyEpg?si=xttaGoYKcoJ09Ln2) From 1bca8e4bfa85b552a1a9cfbafc3d0e244f09b560 Mon Sep 17 00:00:00 2001 From: Aman Yadav <99861840+aman-yadav-05@users.noreply.github.com> Date: Wed, 15 May 2024 13:55:12 +0530 Subject: [PATCH 3/3] Update src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md Co-authored-by: dsh --- .../content/103-basic-data-structures/101-linked-lists.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md b/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md index 28e987221..4bdd5983c 100644 --- a/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md +++ b/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/101-linked-lists.md @@ -2,7 +2,6 @@ Linked Lists are a type of data structure used for storing collections of data. The data is stored in nodes, each of which contains a data field and a reference (link) to the next node in the sequence. Structurally, a linked list is organized into a sequence or chain of nodes, hence the name. Two types of linked lists are commonly used: singly linked lists, where each node points to the next node and the last node points to null, and doubly linked lists, where each node has two links, one to the previous node and another one to the next. Linked Lists are used in other types of data structures like stacks and queues. -
Learn more from the following links: - [Linked List Explained: from Basics to Advanced](https://www.freecodecamp.org/news/how-linked-lists-work/)