The opposite of dynamic is static.
Chat with our AI personalities
Two method of representing a binary tree is Static allocation, and Dynamic allocation
Constructors are necessary to initialize classes. It allows to avoid to a lot of problems with unauthorized access of memory. Dynamic allocation makes possible allocation of memory during execution of program. If you do not use dynamic allocation, all required memory will be allocated during initialization phase (constructors are usually responsible for that). But you can't use more memory. Dynamic allocation was designed to overcome such problems.
There are two types of memory allocations. 1. Static memory allocation 2. Dynamic memory allocation
Not freeing it when you no longer need the memory.
Linked lists use dynamic memory allocation (also called "heap memory allocation", as the linked list is stored in heap memory).