-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_0895_FreqStack.cc
90 lines (79 loc) · 1.52 KB
/
Problem_0895_FreqStack.cc
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include <list>
#include <queue>
#include <unordered_map>
#include "UnitTest.h"
using namespace std;
class FreqStack
{
public:
FreqStack() {}
void push(int val)
{
freq[val]++;
stack.push_back(val);
que.push(Info(seq++, freq[val], std::prev(stack.end())));
}
int pop()
{
if (stack.empty())
{
return -1;
}
Info p = que.top();
que.pop();
int ans = *p.ptr;
freq[ans]--;
stack.erase(p.ptr);
return ans;
}
private:
class Info
{
public:
Info() { count = 0; }
Info(int s, int c, list<int>::iterator p)
{
seq = s;
count = c;
ptr = p;
}
// 先按词频从大到小排序,再按进栈顺序从大到小排序
bool operator<(const Info& other) const { return this->count < other.count || this->count == other.count && this->seq < other.seq; }
int seq; // 进展顺序
int count; // 词频
list<int>::iterator ptr;
};
// key, freq
unordered_map<int, int> freq;
// Info {seq, key, freq}
priority_queue<Info> que;
// key
list<int> stack;
int seq = 0;
};
/**
* Your FreqStack object will be instantiated and called as such:
* FreqStack* obj = new FreqStack();
* obj->push(val);
* int param_2 = obj->pop();
*/
void testFreqStack()
{
FreqStack s;
s.push(5);
s.push(7);
s.push(5);
s.push(7);
s.push(4);
s.push(5);
EXPECT_EQ_INT(5, s.pop());
EXPECT_EQ_INT(7, s.pop());
EXPECT_EQ_INT(5, s.pop());
EXPECT_EQ_INT(4, s.pop());
EXPECT_SUMMARY;
}
int main()
{
testFreqStack();
return 0;
}