当前位置: 首页 > article >正文

力扣232:用栈实现队列

请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(pushpoppeekempty):

实现 MyQueue 类:

  • void push(int x) 将元素 x 推到队列的末尾
  • int pop() 从队列的开头移除并返回元素
  • int peek() 返回队列开头的元素
  • boolean empty() 如果队列为空,返回 true ;否则,返回 false

说明:

  • 你 只能 使用标准的栈操作 —— 也就是只有 push to toppeek/pop from topsize, 和 is empty 操作是合法的。
  • 你所使用的语言也许不支持栈。你可以使用 list 或者 deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。

示例 1:

输入:
["MyQueue", "push", "push", "peek", "pop", "empty"]
[[], [1], [2], [], [], []]
输出:
[null, null, null, 1, 1, false]

解释:
MyQueue myQueue = new MyQueue();
myQueue.push(1); // queue is: [1]
myQueue.push(2); // queue is: [1, 2] (leftmost is front of the queue)
myQueue.peek(); // return 1
myQueue.pop(); // return 1, queue is [2]
myQueue.empty(); // return false

思想:

用两个栈实现队列操作, 队列为先进先出, 栈为先进后出;
元素入队, 进入S1;
元素出队, S2不为空, S2栈顶元素弹出, S2为空, 将S1元素弹出进入S2, 再从S2栈顶弹出

代码:

typedef struct {
    int stack1[100];
    int top1;
    int stack2[100];
    int top2;
} MyQueue;


MyQueue* myQueueCreate() {
    MyQueue *obj = (MyQueue*)malloc(sizeof(MyQueue));
    obj->top1 = 0;
    obj->top2 = 0;
    return obj;
}


void myQueuePush(MyQueue* obj, int x) {
    obj->stack1[obj->top1++] = x; /* 入队到S1 */
}


int myQueuePop(MyQueue* obj) {
    if (obj->top2 == 0) {
        while (obj->top1 != 0) {  /* S1元素弹出, 进入S2 */
            obj->stack2[obj->top2++] = obj->stack1[--obj->top1];
        }
    }
    return obj->stack2[--obj->top2]; /* 从S2中弹出元素 */
}

int myQueuePeek(MyQueue* obj) {
    if (obj->top2 == 0) {
        while (obj->top1 != 0) {  /* S1元素弹出, 进入S2 */
            obj->stack2[obj->top2++] = obj->stack1[--obj->top1];
        }
    }
    return obj->stack2[obj->top2 - 1];  /* 获取栈顶元素, 不用弹出元素 */
}


bool myQueueEmpty(MyQueue* obj) {
    return obj->top1 == 0 && obj->top2 == 0;
}

void myQueueFree(MyQueue* obj) {
    free(obj);
}

利用栈1和栈2来模拟一个队列,并运用栈的运算实现队列的插入、删除y以及判空运算。

代码:

#define MAXSIZE 100
typedef struct{
	int data[MAXSIZE];
	int top;
}SqStack; 

void initStack(SqStack &s){
	S.top=-1;
}

bool StackEmpty(SqStack &S){
	return S.top=-1;
}

bool push(SqStack &S,int e){
	if(S.top==MAXSIZE-1){
		return false;//栈满 
	}
	S.data[++S.top]=e;
	return true; 
}

bool pop(SqStack &S,int &e){
	if(S.top==-1) return false;
	e=S.data[S.top--];
	return true;
}

//模拟入队
bool EnQueue(SqStack &s1,SqStack,&s2,int e){
	int temp;
	if(s1.top==MAXSIZE-1){
		if(!StackEmpty(s2)){
			printf("空间已满,无法入队!!!\n");
			return false;
		}else {
			while(!StackEmpty(s1)){
				pop(s1,temp);
				push(s2,temp);
			}
		}
		push(s1,e);
		return true;
	}else{
		push(s1,e);
		return true;
	}
} 
//模拟出队 
bool DeQueue(SqStack &s1,SqStack &s2,int e){
	int temp;
	if(!StackEmpyt(s2)){
		pop(s2,e);
		return true;
	}else{
		if(StackEmpty(s1)){
			printf("队列为空,无法出队!!!\n");
			return false; 
		}else{
			while(!StackEmpyt(s1)){
				pop(s1,temp);
				push(s2,temp);
			}
			pop(s2,e);
			return true;
		}
	}
} 

//判断队列是否为空
bool QueueEmpty(SqStack &s1,SqStack &s2){
	return StackEmpty(s1)&&StackEmpty(s2);
} 


http://www.kler.cn/a/316801.html

相关文章:

  • 1小时构建Vue3知识体系之vue的生命周期函数
  • vxe-table 3.10+ 进阶高级用法(一),根据业务需求自定义实现筛选功能
  • 深度学习之 LSTM
  • 【LeetCode】【算法】55. 跳跃游戏
  • React Native 全新架构来了
  • 【深度学习】LSTM、BiLSTM详解
  • 【Proteus仿真】基于51单片机的宠物喂食系统设计
  • JSON合并工具
  • JVM-类加载器的双亲委派模型详解
  • 前后端数据交互 笔记03(get和post方法)
  • 使用 Azure Functions 开发 Serverless 应用:详解与实战
  • LeetCode 1014. 最佳观光组合 一次遍历数组,时间复杂度O(n)
  • 【matlab】将程序打包为exe文件(matlab r2023a为例)
  • Linux文件IO(三)-Linux系统如何管理文件
  • 【基础知识】网络套接字编程
  • QT-MOC元对象系统详解
  • 【小程序】微信小程序课程 -1 安装与配置
  • 【2025】基于微信小程序的人工智能课程学习平台的设计与实现(源码+文档+解答)
  • 职业技能大赛-自动化测试笔记分享
  • while语句
  • CANdela/Diva系列8--如何生成0x27服务解锁的DLL
  • MySQL 数据库课程设计详解与操作示例
  • Java : 图书管理系统
  • ArcGIS Pro SDK (十四)地图探索 6 图形与工具
  • AIGC7: 高通骁龙AIPC开发者沙龙过程记录A
  • 力扣刷题之2398.预算内的最多机器人数目