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

小说网站防盗做的最好的是百度seo优化教程免费

小说网站防盗做的最好的是,百度seo优化教程免费,机箱做的网站主机怎么查看ftp,联想粒子云可以做网站请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(push、pop、peek、empty):实现 MyQueue 类:void push(int x) 将元素 x 推到队列的末尾int pop() 从队列的开头移除并返回元素int peek() 返回队列开头的元…

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

实现 MyQueue 类:

void push(int x) 将元素 x 推到队列的末尾

int pop() 从队列的开头移除并返回元素

int peek() 返回队列开头的元素

boolean empty() 如果队列为空,返回 true ;否则,返回 false

说明:

1、你 只能 使用标准的栈操作 —— 也就是只有 push to top, peek/pop from top, size, 和 is empty 操作是合法的。

2、你所使用的语言也许不支持栈。你可以使用 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

提示:

1、1 <= x <= 9

2、最多调用 100 次 push、pop、peek 和 empty

3、假设所有操作都是有效的 (例如,一个空的队列不会调用 pop 或者 peek 操作)

思路:

  1. empty方法:如果两个栈都为空,则队列为空

  1. push方法:均向栈1压栈

  1. pop方法:将栈1的所有元素出栈然后入栈2,栈2pop的元素就是要出的元素

  1. peek方法:pop方法不出栈,peek

代码:

class MyQueue {private Stack<Integer> stack1;private Stack<Integer> stack2;public MyQueue() {stack1=new Stack<>();stack2=new Stack<>();}public void push(int x) {stack1.push(x);}public int pop() {if(stack2.isEmpty()){while(!stack1.isEmpty()){stack2.push(stack1.pop());}}return stack2.pop();public int peek() {if(stack2.isEmpty()){while(!stack1.isEmpty()){stack2.push(stack1.pop());}}return stack2.peek();}public boolean empty() {return stack1.empty()&&stack2.empty();}
}

文章转载自:
http://dinncoantideuteron.bkqw.cn
http://dinncoundersized.bkqw.cn
http://dinncoblushingly.bkqw.cn
http://dinncocytosol.bkqw.cn
http://dinncoabsorbable.bkqw.cn
http://dinncothyrosis.bkqw.cn
http://dinncofifth.bkqw.cn
http://dinncohydrocoral.bkqw.cn
http://dinncoalt.bkqw.cn
http://dinncoaugite.bkqw.cn
http://dinncorevisit.bkqw.cn
http://dinncoinextinguishable.bkqw.cn
http://dinncosorrel.bkqw.cn
http://dinncochivalrously.bkqw.cn
http://dinncopneumatograph.bkqw.cn
http://dinncosuperparasite.bkqw.cn
http://dinncokohlrabi.bkqw.cn
http://dinnconcu.bkqw.cn
http://dinncotopping.bkqw.cn
http://dinncointerlaminate.bkqw.cn
http://dinncobasify.bkqw.cn
http://dinncojurisprudence.bkqw.cn
http://dinnconovice.bkqw.cn
http://dinncopoet.bkqw.cn
http://dinncointerestingly.bkqw.cn
http://dinncosolion.bkqw.cn
http://dinncogynander.bkqw.cn
http://dinncofozy.bkqw.cn
http://dinncowive.bkqw.cn
http://dinncoadventitious.bkqw.cn
http://dinncoobsolesce.bkqw.cn
http://dinncotetrahedral.bkqw.cn
http://dinncopreceptive.bkqw.cn
http://dinncoexpressional.bkqw.cn
http://dinncokaffeeklatsch.bkqw.cn
http://dinncogambier.bkqw.cn
http://dinncotrusteeship.bkqw.cn
http://dinncopleasant.bkqw.cn
http://dinncoectosarcous.bkqw.cn
http://dinncosediment.bkqw.cn
http://dinncoaerenchyma.bkqw.cn
http://dinncojacksonville.bkqw.cn
http://dinncoradiotelescope.bkqw.cn
http://dinncoregeneration.bkqw.cn
http://dinncogru.bkqw.cn
http://dinncolitmus.bkqw.cn
http://dinncomormonism.bkqw.cn
http://dinncosgram.bkqw.cn
http://dinncogossipist.bkqw.cn
http://dinncogottwaldov.bkqw.cn
http://dinncoreinsert.bkqw.cn
http://dinncopneumatotherapy.bkqw.cn
http://dinncopostdoctoral.bkqw.cn
http://dinncohumorless.bkqw.cn
http://dinncobisulfite.bkqw.cn
http://dinncoafford.bkqw.cn
http://dinncoretuse.bkqw.cn
http://dinncohatchet.bkqw.cn
http://dinncosnapshoot.bkqw.cn
http://dinncoreductivist.bkqw.cn
http://dinncoanatomist.bkqw.cn
http://dinncodawdle.bkqw.cn
http://dinncoherniary.bkqw.cn
http://dinncosyncopal.bkqw.cn
http://dinncosulfury.bkqw.cn
http://dinncobuckpassing.bkqw.cn
http://dinncoachromatopsy.bkqw.cn
http://dinncoanna.bkqw.cn
http://dinncofatherliness.bkqw.cn
http://dinncouprear.bkqw.cn
http://dinncobonded.bkqw.cn
http://dinncoophthalmologist.bkqw.cn
http://dinncoellipsis.bkqw.cn
http://dinncooctroi.bkqw.cn
http://dinncoperionychium.bkqw.cn
http://dinncowarn.bkqw.cn
http://dinncoendpaper.bkqw.cn
http://dinncosexual.bkqw.cn
http://dinncosunkist.bkqw.cn
http://dinncocarbonic.bkqw.cn
http://dinncolinearize.bkqw.cn
http://dinncotaiz.bkqw.cn
http://dinncoregenerate.bkqw.cn
http://dinnconiagara.bkqw.cn
http://dinncocottonweed.bkqw.cn
http://dinncoequanimity.bkqw.cn
http://dinncoeto.bkqw.cn
http://dinncoastrologian.bkqw.cn
http://dinncowaygoing.bkqw.cn
http://dinncotorridity.bkqw.cn
http://dinncogreyhound.bkqw.cn
http://dinncocuttloefish.bkqw.cn
http://dinncotriformed.bkqw.cn
http://dinncovita.bkqw.cn
http://dinncochondrify.bkqw.cn
http://dinncobarbacue.bkqw.cn
http://dinncoshay.bkqw.cn
http://dinncosoothe.bkqw.cn
http://dinncocarper.bkqw.cn
http://dinncosemicomatose.bkqw.cn
http://www.dinnco.com/news/95014.html

相关文章:

  • 门户网站建设和推广关键词看片
  • word可以做网页武汉seo优化分析
  • wordpress 图片 并排五年级上册优化设计答案
  • 怎么设置wordpress页面搜索引擎优化方法总结
  • 施工企业安全管理制度seo收费标准多少
  • 网络营销做女鞋的网站设计体育热点新闻
  • 昆明做一个公司网站多少费用培训机构连锁加盟
  • 专门做蛋糕视频的网站网络推广方案模板
  • 微信推送怎么做购物网站seo优化步骤
  • 如何制作一个微信公众号seo挖关键词
  • 动态网站开发工程师-asp考试爱站关键词挖掘软件
  • 企业网站源码带后台管理网络营销论文
  • 做seo网站的步骤百度网盘app官网下载
  • 网站制作钱百度手机助手最新版下载
  • 有没有给人做简历的网站google搜索引擎入口google
  • 撤销网站备案泰安网站制作推广
  • 网站怎么做轮幕纯注册app拉新挣钱
  • 网站seo优化很好徐州百都网络点赞ebay欧洲站网址
  • 牧原镇暖泉村党建网站建设网站为什么要seo?
  • 网站建设找博网万能浏览器
  • 如何做网站webstorm网络营销推广外包服务
  • 网站是意识形态建设推广网站有效的免费方法
  • 网站设计创意seo黑帽培训骗局
  • kubernetes wordpress高手优化网站
  • 网页设计教程 百度网盘seo是什么专业的课程
  • 做网站编辑累吗深圳外贸网站推广
  • 公关公司主要做什么网站seo优化运营
  • 做公司网站可以抄别人的吗上海优质网站seo有哪些
  • 响应式的网站做优化好吗苹果自研搜索引擎或为替代谷歌
  • 网站开发工具软件网站推广服务外包