Completed
Why do we need dynamic arrays?
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Dynamic Arrays of Objects - Data Structures Course Step-by-Step
Automatically move to the next video in the Classroom when playback concludes
- 1 Summary of what you'll learn Dynamic Memory and Arrays of Objects
- 2 Example showcase
- 3 Creation of static array of objects
- 4 Why do we need dynamic arrays?
- 5 Creation of dynamic array of objects
- 6 Difference between static and dynamic arrays
- 7 Deallocating memory
- 8 Visual example of memory allocation how arrays are allocated
- 9 Tools for code analyzing
- 10 Entering data in an array using loops
- 11 Arrays and functions passing a dynamic array into a function
- 12 Changing size of the dynamic array at runtime visual explanation
- 13 Changing the size of the dynamic array at runtime code example
- 14 Copying elements from one array to another using "memcpy" function
- 15 Copying elements from one array to another using loops
- 16 Adjusting existing logic
- 17 Practical task for you with instructions
- 18 Problem with "memcpy" function
- 19 Deep copy VS Shallow copy
- 20 Second practical task for you
- 21 Final words