Lecture Outline
- A data structure is simply just a way to store and manage data
- There are many types of data structures. Each have their own pros/cons and use cases. It is important to be aware of the many types of data structures, and how to use them
- Arrays are not resizeable. To add something to an already full array, we must create a new array and copy the contents of the old array into the new array
Lecture Recording
Lecture Slides
Code