This exercises are based from the book Data Structures and Algorithms with JavaScript - by Michael McMillian (O’Reilly) ISBN - 978-1-449-36493-9.
The purpose of this repo is to update the exercises to ES6 standards and to correct the errors from the examples that this book has.
Num | Type | Exercises | Description |
---|---|---|---|
1.- | Array | 4 | The Array is the most common data structure in computer programming |
2.- | Lists | 5 | A List is an ordered sequence of data, where elements are not meant to be ordered. |
3.- | Stacks | 3 | A Stack is an example of Last-in, First-Out (LIFO) |
4.- | Queues | A Queue is an example of First-in, First-Out (FIFO) |