forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaximum-frequency-stack.py
More file actions
38 lines (29 loc) · 823 Bytes
/
maximum-frequency-stack.py
File metadata and controls
38 lines (29 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Time: O(1)
# Space: O(n)
import collections
class FreqStack(object):
def __init__(self):
self.__freq = collections.Counter()
self.__group = collections.defaultdict(list)
self.__maxfreq = 0
def push(self, x):
"""
:type x: int
:rtype: void
"""
self.__freq[x] += 1
if self.__freq[x] > self.__maxfreq:
self.__maxfreq = self.__freq[x]
self.__group[self.__freq[x]].append(x)
def pop(self):
"""
:rtype: int
"""
x = self.__group[self.__maxfreq].pop()
if not self.__group[self.__maxfreq]:
self.__group.pop(self.__maxfreq)
self.__maxfreq -= 1
self.__freq[x] -= 1
if not self.__freq[x]:
self.__freq.pop(x)
return x