From 540d5030a470ab9c0cbf12e54ce56b9de4b43d8a Mon Sep 17 00:00:00 2001 From: marvin Date: Fri, 10 May 2024 21:10:51 +0300 Subject: [PATCH] Adding videos and a slightly altered description of arrays (#5637) To give credit where credit is due, the description change is from an issue (#5600) I picked up by GitHub user 'andremarko'; https://github.com/kamranahmedse/developer-roadmap/issues/5600 im going to try to provide more videos for all languages across the data structures and algorithms flowchart --- .../content/103-basic-data-structures/100-array.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/100-array.md b/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/100-array.md index 1e0bba92fdce..64bd24cdd962 100644 --- a/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/100-array.md +++ b/src/data/roadmaps/datastructures-and-algorithms/content/103-basic-data-structures/100-array.md @@ -1,3 +1,12 @@ # Array -An **Array** is a linear data structure that holds elements of the same type, which means we can store only a specific type of elements in the array. It uses contiguous memory space to store elements. In an array, we can directly access any element based on its index which makes it an efficient data structure. Arrays have two types: one-dimensional and multi-dimensional. In a one-dimensional array, data is stored in a linear form while a multi-dimensional array can store data in the form of a matrix or in 3-D format. \ No newline at end of file +An array is a linear data structure that can hold elements and arrange them. It uses contiguous memory space to store elements. In an array, we can directly access any element based on its index which makes it an efficient data structure. Arrays have two types: one-dimensional and multi-dimensional. In a one-dimensional array, data is stored in a linear form while a multi-dimensional array can store data in the form of a matrix or in 3-D format. + +- [Arrays in Python](!https://www.youtube.com/watch?v=gDqQf4Ekr2A&ab_channel=codebasics) +- [Arrays in Java](!https://www.youtube.com/watch?v=ei_4Nt7XWOw&ab_channel=BroCode) +- [Arrays in Javascript](!https://www.youtube.com/watch?v=yQ1fz8LY354) +- [Arrays in GoLang](!https://www.youtube.com/watch?v=e-oBn806Pzc&pp=ygUIYXJyYXkgZ28%3D) +- [Arrays in C#](!https://www.youtube.com/watch?v=YiE0oetGMAg&pp=ygUIYXJyYXkgYyM%3D) +- [Arrays in C++](!https://www.youtube.com/watch?v=G38hQKXa_RU&pp=ygUJYXJyYXkgYysr) +- [Arrays in Rust](!https://www.youtube.com/watch?v=cH6Qv47MPwk&pp=ygUKYXJyYXkgcnVzdA%3D%3D) +- [Arrays in Ruby](!https://www.youtube.com/watch?v=SP3Vf2KcYeU&pp=ygUKYXJyYXkgcnVieQ%3D%3D)