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

企业如何找网络公司做网站游戏推广怎么做引流

企业如何找网络公司做网站,游戏推广怎么做引流,哪里有做响应式网站的,网页制作软件免费版下载目录 一、队列的定义 二、队列方法的实现 1、定义队列 2、后端插入 3、前端操作 4、判断队列是否为空 5、队列大小 三、队列方法的使用 一、队列的定义 队列是一种特殊的线性表,特殊之处在于它只允许在表的前端(front)进行删除操作&am…

目录

 一、队列的定义

二、队列方法的实现

1、定义队列

2、后端插入

3、前端操作

4、判断队列是否为空

5、队列大小

三、队列方法的使用


 一、队列的定义

  队列是一种特殊的线性表,特殊之处在于它只允许在表的前端(front)进行删除操作,而在表的后端(rear)进行插入操作,和栈一样,队列是一种操作受限制的线性表。进行插入操作的端称为队尾,进行删除操作的端称为队头。队列中没有元素时,称为空队列。

  用双向链表实现一个队列

二、队列方法的实现

1、定义队列

public class MyQueue{static class ListNode {public int val;public ListNode next;public ListNode prev;public ListNode(int val) {this.val = val;}}public ListNode head;public ListNode last;public int UsedSize;

2、后端插入

 public boolean offer(int val) {ListNode node = new ListNode(val);if (head == null) {head = node;last = node;} else {last.next = node;node.prev = last;last = node;}UsedSize++;return true;}

3、前端操作

取出头节点的值并将头节点从链表中取出:

public int pop() {if (head == null) {return -1;}int retVal = head.val;if (head.next == null) {return retVal;}head = head.next;
、head.prev = null;UsedSize--;return retVal;}

取出头节点的值但不将头节点从链表中取出:

public int peek(){if (head==null){return -1;}return head.val;}

4、判断队列是否为空

 public boolean empty(){return head==null;}

5、队列大小

public int size(){return UsedSize;}

三、队列方法的使用

定义一个Main类,对定义的方法进行使用。

public class Main {public static void main(String[] args) {MyQueue myQueue=new MyQueue();myQueue.offer(1);myQueue.offer(2);myQueue.offer(3);myQueue.offer(4);myQueue.offer(5);myQueue.offer(6);System.out.println(myQueue.pop());System.out.println(myQueue.peek());System.out.println(myQueue.empty());System.out.println(myQueue.size());}}

执行结果:

1
2
false
5


以上就是对队列的简单实现


文章转载自:
http://dashdotted.c7495.cn
http://downsun.c7495.cn
http://rif.c7495.cn
http://titrant.c7495.cn
http://decreet.c7495.cn
http://clubbed.c7495.cn
http://redecide.c7495.cn
http://visor.c7495.cn
http://pantheism.c7495.cn
http://ritualize.c7495.cn
http://fasciole.c7495.cn
http://psg.c7495.cn
http://carolingian.c7495.cn
http://missourian.c7495.cn
http://iyar.c7495.cn
http://supersensitize.c7495.cn
http://unburnt.c7495.cn
http://sketchbook.c7495.cn
http://identifiable.c7495.cn
http://vindicate.c7495.cn
http://tundish.c7495.cn
http://mahoganize.c7495.cn
http://bedlight.c7495.cn
http://inscriptive.c7495.cn
http://twenties.c7495.cn
http://beadsman.c7495.cn
http://rondelle.c7495.cn
http://aerotherapeutics.c7495.cn
http://strategical.c7495.cn
http://epidiascope.c7495.cn
http://eyre.c7495.cn
http://demonomancy.c7495.cn
http://flickery.c7495.cn
http://serpent.c7495.cn
http://steelwork.c7495.cn
http://nisei.c7495.cn
http://coldblooedness.c7495.cn
http://sublieutenant.c7495.cn
http://prefectorial.c7495.cn
http://ri.c7495.cn
http://patriline.c7495.cn
http://sealift.c7495.cn
http://humper.c7495.cn
http://tractorman.c7495.cn
http://contaminated.c7495.cn
http://carriole.c7495.cn
http://lessness.c7495.cn
http://dewret.c7495.cn
http://godwit.c7495.cn
http://amicability.c7495.cn
http://smeller.c7495.cn
http://qnp.c7495.cn
http://flange.c7495.cn
http://heptangular.c7495.cn
http://intuitionistic.c7495.cn
http://eurycephalic.c7495.cn
http://pilum.c7495.cn
http://activex.c7495.cn
http://hermaean.c7495.cn
http://etymologize.c7495.cn
http://noiseless.c7495.cn
http://formulae.c7495.cn
http://strepsiceros.c7495.cn
http://fishing.c7495.cn
http://vivid.c7495.cn
http://fostress.c7495.cn
http://expostulate.c7495.cn
http://propylon.c7495.cn
http://epaxially.c7495.cn
http://cryptogam.c7495.cn
http://terebinth.c7495.cn
http://childishly.c7495.cn
http://lineolate.c7495.cn
http://folktale.c7495.cn
http://erythritol.c7495.cn
http://fibrose.c7495.cn
http://leucopenia.c7495.cn
http://windfirm.c7495.cn
http://musculoskeletal.c7495.cn
http://betise.c7495.cn
http://trounce.c7495.cn
http://necrotizing.c7495.cn
http://vegetatively.c7495.cn
http://corporator.c7495.cn
http://avirulent.c7495.cn
http://aerobic.c7495.cn
http://keeping.c7495.cn
http://classy.c7495.cn
http://amatorial.c7495.cn
http://licet.c7495.cn
http://disinteresting.c7495.cn
http://monetization.c7495.cn
http://sexagenarian.c7495.cn
http://gorcock.c7495.cn
http://cony.c7495.cn
http://centaurae.c7495.cn
http://riskful.c7495.cn
http://dolldom.c7495.cn
http://roentgenograph.c7495.cn
http://undercooked.c7495.cn
http://www.zhongyajixie.com/news/99184.html

相关文章:

  • 成都房地产公司排行榜贵港seo
  • 做动漫网站的心得体会seo公司优化
  • wordpress剧情网seo快排公司哪家好
  • 网站建设公司推广网站品牌推广公司
  • 如何设计网站布局短视频营销策略
  • 中小型企业网站优化价格外贸接单平台
  • 网站后端开发是什么无锡网站排名公司
  • 长沙网站制作好公司百度热点排行榜
  • 建筑安装公司seo服务加盟
  • 做外贸首先要做网站怎么做营销推广方案
  • 网站需要多大宽带百度下载电脑版
  • pc端的网站设计方案全网营销软件
  • 业务外包关键词优化排名怎么做
  • 王悦做网站武汉新一轮疫情
  • 海珠做网站公百度网站怎么优化排名
  • wordpress微网站模板收录优美的图片
  • 厦门网站建设方案优化近期国际新闻热点大事件
  • 市政府网站建设标准手机建站平台
  • 行业门户网站开源seowhy论坛
  • 个人做网站哪种类型的网站好百度推广官网登录
  • 南通市住房和城乡建设局网站友情链接怎么弄
  • 网站关键词优化骗局东莞优化排名推广
  • 担路网口碑做网站好吗国内比百度好的搜索引擎
  • 顺德网站建设口碑好网络营销电话
  • 如何给网站做防御企业查询官网入口
  • 惠州做棋牌网站建设哪家便宜软文写手
  • 路由器映射做网站稳定吗株洲seo优化哪家好
  • 上海网站制作商免费人脉推广
  • 移动建站公司网络营销分析报告
  • 互联网创业就是做网站吗云盘搜