Design a data structure to store the strings' count with the ability to return the strings with minimum and maximum counts. Implement the AllOne class with methods to increment and decrement counts, and to get the keys with maximum and minimum counts.
Key Insights
The data structure must support efficient insertion, deletion, and retrieval operations.
Each operation (inc, dec, getMaxKey, getMinKey) must run in O(1) average time complexity.
Maintaining a mapping of counts to keys is essential to efficiently track keys with minimum and maximum counts.
A doubly linked list can be employed to maintain the order of keys based on their counts.
Space and Time Complexity
Time Complexity: O(1) for all operations (average case)
Space Complexity: O(N), where N is the number of unique keys stored in the data structure.
Solution
The AllOne class utilizes a combination of a hash table and a doubly linked list to efficiently manage the counts of strings. The hash table maps each string to its current count, while the linked list maintains the order of counts. When a count is incremented or decremented, the corresponding node in the linked list is updated or rearranged accordingly. The head of the linked list represents the minimum count, and the tail represents the maximum count, allowing for O(1) retrieval of these keys.