Problem Description
You are given an integer n representing the size of a 0-indexed memory array. All memory units are initially free. You have a memory allocator with the functionalities to allocate a block of size consecutive free memory units with a specified id and free all memory units with a given id.
Key Insights
- The allocator manages memory as an array, where each index represents a memory unit.
- Allocation requires finding the leftmost block of consecutive free units.
- Freeing memory must handle multiple allocations with the same id and restore those units back to free.
- Efficient tracking of allocated memory is essential to minimize time complexity for both allocation and freeing operations.
Space and Time Complexity
Time Complexity: O(n) for allocation and free operations in the worst case, where n is the size of the memory array.
Space Complexity: O(n) for storing the memory state and mapping ids to their allocated memory blocks.
Solution
The solution involves using an array to represent the memory and a hashmap to keep track of which indices are associated with which ids. The allocate
function searches for the first segment of free memory that can accommodate the requested size, while the freeMemory
function iterates through the memory array to free all segments associated with the specified id.