InterviewSolution
Saved Bookmarks
| 1. |
What is dynamic data structure? |
|
Answer» A dynamic data structure (DDS) refers to an organization or collection of data in memory that has the flexibility to grow or shrink in size, enabling a programmer to CONTROL EXACTLY how much memory is utilized. Dynamic data structures change in size by having unused memory allocated or de-allocated from the heap as NEEDED. Dynamic data structures play a key role in programming LANGUAGES like C, C++, and Java because they provide the programmer with the flexibility to adjust the memory CONSUMPTION of software programs. |
|