队列的最大值
1.题目描述
请定义一个队列并实现函数 max_value 得到队列里的最大值,要求函数max_value、push_back 和 pop_front 的均摊时间复杂度都是O(1)。
若队列为空,pop_front 和 max_value 需要返回 -1
示例 1:
示例 2:
2.思路(双向队列)
维护一个双向队列,使其元素递减用于获取队列的最大值,一个辅助队列,用于出队列,入队列操作。
3.代码
class MaxQueue {
public:
MaxQueue() {
}
int max_value() {
if(d.empty()){
return -1;
}
return d.front();
}
void push_back(int value) {
while(!d.empty() && d.back() <= value){
d.pop_back();
}
q.push(value);
d.push_back(value);
}
int pop_front() {
if(q.empty()){
return -1;
}
if(q.front() == d.front()){
d.pop_front();
}
int res = q.front();
q.pop();
return res;
}
private:
queue<int> q;
deque<int> d;
};
/**
* Your MaxQueue object will be instantiated and called as such:
* MaxQueue* obj = new MaxQueue();
* int param_1 = obj->max_value();
* obj->push_back(value);
* int param_3 = obj->pop_front();
*/
4.复杂度分析
时间复杂度:O(1)
空间复杂度:O(n)