-
Garbage Collector Generations Algorithm
Explain the Generations Algorithm used in the context of Garbage Collector
-
Data Structures
Assume you have large set of data, say more than 100,000 elements. Each data element has a unique string associated with it. 1. What data structure has the optimal algorithmic access time to any element when the only thing you know about the element is the unique string associated with it? 2. What is the O() time for access to any element using this data structure? 3. What data structures would you...