From ee6572660b3353de84d5ad96c05e5310702e6a81 Mon Sep 17 00:00:00 2001 From: payal pagariya <76428958+payalpagaria@users.noreply.github.com> Date: Fri, 10 Feb 2023 23:50:56 +0530 Subject: [PATCH] Add resources for data structures (#3374) Added resources related to stack, queue and recursion all implemented in JavaScript --- .../content/104-javascript-data-structures/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/roadmaps/javascript/content/104-javascript-data-structures/index.md b/src/roadmaps/javascript/content/104-javascript-data-structures/index.md index b288d5952..16cb57714 100644 --- a/src/roadmaps/javascript/content/104-javascript-data-structures/index.md +++ b/src/roadmaps/javascript/content/104-javascript-data-structures/index.md @@ -5,6 +5,9 @@ A Data structure is a format to organize, manage and store data in a way that al Visit the following resources to learn more: - [ Data structures](https://www.freecodecamp.org/news/data-structures-in-javascript-with-examples/#what-is-a-data-structure) +- [Introduction to the Stack Data Structure](https://youtu.be/4F-BnR2XwqU) +- [Introduction to the Queue Data Structure](https://youtu.be/GRA_3Ppl2ZI) +- [Intro to Recursion: Anatomy of a Recursive Solution](https://youtu.be/yBWlPte6FhA) - [Binary Tree Algorithms for Technical Interviews - Full Course](https://youtu.be/fAAZixBzIAI) -- [Graph Algorithms for Technical Interviews - Full Course](https://youtu.be/tWVWeAqZ0WU) +- [Graph Algorithms for Technical Interviews - Full Course](https://youtu.be/tWVWeAqZ0WU) - [Dynamic Programming - Learn to Solve Algorithmic Problems & Coding Challenges](https://youtu.be/oBt53YbR9Kk)