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

请大学生做网站广东恒力建设工程有限公司网站

请大学生做网站,广东恒力建设工程有限公司网站,手机网站相关,社区网站开发进度表接着上一期跟大家说的用栈实现队列#xff0c;这期的Python学习教程跟大家讲用队列实现栈题目#xff1a;使用队列实现栈的下列操作#xff1a;push(x) – 元素 x 入栈pop() – 移除栈顶元素top() – 获取栈顶元素empty() – 返回栈是否为空Implement the following operati…接着上一期跟大家说的用栈实现队列这期的Python学习教程跟大家讲用队列实现栈题目使用队列实现栈的下列操作push(x) – 元素 x 入栈pop() – 移除栈顶元素top() – 获取栈顶元素empty() – 返回栈是否为空Implement the following operations of a stack using queues.push(x) – Push element x onto stack.pop() – Removes the element on top of the stack.top() – Get the top element.empty() – Return whether the stack is empty.示例:MyStack stack  new MyStack();stack.push(1);stack.push(2);stack.top(); // 返回 2stack.pop(); // 返回 2stack.empty(); // 返回 false注意:你只能使用队列的基本操作-- 也就是 push to back, peek/pop from front, size, 和 is empty 这些操作是合法的。你所使用的语言也许不支持队列。 你可以使用 list 或者 deque(双端队列)来模拟一个队列 , 只要是标准的队列操作即可。你可以假设所有操作都是有效的(例如, 对一个空的栈不会调用 pop 或者 top 操作)Notes:You must use only standard operations of a queue – which means only push to back, peek/pop from front, size, and is empty operations are valid.Depending on your language, queue may not be supported natively. You may simulate a queue by using a list or deque (double-ended queue), as long as you use only standard operations of a queue.You may assume that all operations are valid (for example, no pop or top operations will be called on an empty stack).解题思路方法一(两个队列)队列先进后出栈后进先出。用队列实现栈可以用两个队列完成题解入栈时用 queue1 来存入节点出栈时queue1 内节点顺序出队列并入队列到 queue2直到queue1剩最后一个元素时即为栈顶元素弹出即可用一个 top 指针一直指向栈顶元素top() 方法查询栈顶元素时直接返回 top 指针即可。方法二(一个队列)只用一个队列只需要在入栈时反转队列即可入栈存入到队列queue节点1入栈queue1反转队列0次queue1节点2入栈queue1-2反转队列1次queue1-2 -- queue2-1节点2入栈queue2-1-3反转队列2次queue2-1-3 --- queue1-3-2 --- queue3-2-1......这样不管什么时候出队顺序都是按照出栈的顺序。Java方法一class MyStack {Queue queue1;Queue queue2;private int top;//指向栈顶元素public MyStack() {queue1  new LinkedList();queue2  new LinkedList();}public void push(int x) {queue1.offer(x);top  x;//新加入元素为栈顶元素}public int pop() {while (queue1.size()  1) {//条件为队列1的元素个数大于一top  queue1.poll();//用top暂存元素当循环结束时top刚好是栈顶元素queue2.add(top);}//队列1与队列2交换Queue tmp  queue2;queue2  queue1;queue1  tmp;return queue2.poll();//返回队列2的队列头元素队列2也只有一个元素}public int top() {return top;}public boolean empty() {return queue1.isEmpty();//队列1决定了栈是否为空}}方法二每次入队时反转队列即可只有入栈需要特殊操作出栈、取栈顶元素、是否空都按照队列正常出队列、取队列头元素、是否空方法操作。下面是入栈时代码Queue queue  new LinkedList();public void push(int x) {queue.add(x);int sz  queue.size();//获得队列长度while (sz  1) {//反转次数为队列长度减一queue.add(queue.remove());//反转sz--;}}PythonPython语言没有栈和队列数据结构只能用数组 List 或双端队列 deque 实现。这类编程语言就压根不需要 用队列实现栈或用栈实现队列这种问题因为栈和队列本身就必须借助List、deque实现。所以这道题在这种语言中这就非常简单了可以说是作弊。class MyStack:def __init__(self):self.stack  []def push(self, x: int) - None:self.stack.append(x)def pop(self) - int:return self.stack.pop(-1)def top(self) - int:return self.stack[-1]def empty(self) - bool:return not self.stack更多的Python学习教程也会在下期继续为大家更新
http://www.zqtcl.cn/news/565530/

相关文章:

  • 优化网站标题企业的网站一般做哪些维护
  • 聊天网站备案南阳定制网站制作价格低
  • 广州镭拓科技网站建设公司长春招聘
  • 视频网站app怎么做跨境贸易电子商务服务平台
  • 丽水网站seo餐饮vi设计案例
  • 娄底网站建设报价山东省住房和建设厅注册中心网站
  • 公司网站建设工作重点网站建设吉金手指专业11
  • vue做前台网站怎么做钓鱼网站吗
  • 个人建设网站如何定位烟台h5网站开发
  • 广州网站定制多少钱html5游戏开发
  • 使用angularjs的网站域名怎么解析到服务器
  • 地方门户网站盈利模式宝塔 wordpress
  • 西安网站备案软件开发基础教程
  • 有服务器做网站软件系统开发怎样容易
  • 网站建设的公司有发展吗织梦婚纱网站模板
  • 淘宝销售书网站建设方案wordpress调用评论数据
  • 搭建网站需要什么软件苏州吴中区建设局工程网站
  • 长沙市网站推广公司wordpress 弹窗登录插件
  • 网站策划怎么做内容朔州网站建设公司
  • 宁波拾谷网站建设蚌埠网站建设中心
  • 青岛专业设计网站公司加拿大广播公司
  • 盘锦市建设局网站地址八桂职教网技能大赛
  • 投资建设一个网站多少钱和淘宝同时做电商的网站
  • 做动物网站的素材icp备案 网站备案
  • 找人建网站唐山网络运营推广
  • 福建省住房建设厅网站6网站简历模板
  • 医疗网站模版杭州工商注册
  • 正保建设工程网站logo创意
  • 简洁个人博客网站模板下载用自己电脑做网站服务器-phpstudy+花生壳
  • 网页模板下载哪个网站好多个域名指定同一个网站好处