剑指offer之队列中的最大值(C++/Java双重实现)
程序员文章站
2022-11-30 15:20:30
1.题目描述请定义一个队列并实现函数 max_value 得到队列里的最大值,要求函数max_value、push_back 和 pop_front 的均摊时间复杂度都是O(1)。若队列为空,pop_front 和 max_value 需要返回 -1示例 1:输入:[“MaxQueue”,“push_back”,“push_back”,“max_value”,“pop_front”,“max_value”][[],[1],[2],[],[],[]]输出: [null,null,null,2,...
1.题目描述
请定义一个队列并实现函数 max_value 得到队列里的最大值,要求函数max_value、push_back 和 pop_front 的均摊时间复杂度都是O(1)。
若队列为空,pop_front 和 max_value 需要返回 -1
示例 1:
输入:
[“MaxQueue”,“push_back”,“push_back”,“max_value”,“pop_front”,“max_value”]
[[],[1],[2],[],[],[]]
输出: [null,null,null,2,1,2]
示例 2:
输入:
[“MaxQueue”,“pop_front”,“max_value”]
[[],[],[]]
输出: [null,-1,-1]
限制:
1 <= push_back,pop_front,max_value的总操作数 <= 10000
1 <= value <= 10^5
2.问题分析
只要知道队列的底层和队列的特点就很简单
队列的底层:数组实现
栈的特点:先进先出,头删尾插
3.代码实现
3.1C++代码
class MaxQueue {
public:
int arr[100000];
int cnt;
MaxQueue() {
}
int max_value() {
if(cnt==0)
return -1;
int max=arr[0];
for(int i=0;i<cnt;i++)
{
if(arr[i]>max)
max=arr[i];
}
return max;
}
void push_back(int value) {
arr[cnt++]=value;
}
int pop_front() {
if(cnt==0)
return -1;
int flag=arr[0];
for(int i=0;i<cnt-1;i++)
{
arr[i]=arr[i+1];
}
arr[--cnt]=0;
return flag;
}
};
/**
* 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();
*/
3.2Java代码
class MaxQueue {
private int arr[];
private int cnt;
public MaxQueue() {
arr=new int[100000];
}
public int max_value() {
if(cnt==0)
return -1;
int max=arr[0];
for(int i=0;i<cnt;i++)
{
if(arr[i]>max)
max=arr[i];
}
return max;
}
public void push_back(int value) {
arr[cnt++]=value;
}
public int pop_front() {
if(cnt==0)
return -1;
int flag=arr[0];
for(int i=0;i<cnt-1;i++)
{
arr[i]=arr[i+1];
}
arr[--cnt]=0;
return flag;
}
}
/**
* 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();
*/
本文地址:https://blog.csdn.net/qq_45737068/article/details/107134125
推荐阅读
-
剑指offer之队列中的最大值(C++/Java双重实现)
-
剑指offer之在排序数组中查找数字 I(C++/Java双重实现)
-
leetcode中剑指offer的习题 C++语言实现(2)
-
leetcode中剑指offer的习题 C++语言实现(1)
-
剑指offer(Java实现)56 - 数组中只出现一次的两个数字
-
剑指 offer之数组中只出现一次的数字_java
-
剑指Offer(Python多种思路实现):队列的最大值
-
剑指offer_面试题:数组中重复的数字_Java实现
-
剑指offer之数值的整数次方(C++/Java双重实现)
-
剑指offer之队列中的最大值(C++/Java双重实现)