数据结构里,队列的特性是先进先出,其英文是First In First Out。

题目
判断题
数据结构里,队列的特性是先进先出,其英文是First In First Out。
A

B

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

数据结构中,队列是先进后出,栈是先进先出。()


答案:×

第2题:

public class Bootchy {  int bootch;  String snootch;  public Bootchy() {  this(”snootchy”);  System.out.print(”first “);  }  public Bootchy(String snootch) {  this(420, “snootchy”);  System.out.print(”second “);  }  public Bootchy(int bootch, String snootch) {  this.bootch = bootch;  this.snootch = snootch;  System.out.print(”third “);  }  public static void main(String[] args) {  Bootchy b = new Bootchy();  System.out.print(b.snootch +“ “ + b.bootch);  }  }  What is the result?() 

  • A、 snootchy 420 third second first
  • B、 snootchy 420 first second third
  • C、 first second third snootchy 420
  • D、 third second first siiootchy 420
  • E、 third first second snootchy 420
  • F、 first second first third snootchy 420

正确答案:D

第3题:

先进先出队列(First In First Out Queuing,FIFO)把报文分为()。

A.2类

B.3类

C.4类

D.不分类


参考答案:D

第4题:

数据结构里,队列的特性是先进后出,而栈的特性是先进先出。


正确答案:错误

第5题:

数据结构里,栈的特性是后进先出(Last In First Out)又叫LIFO表。


正确答案:正确

第6题:

在一个用数组实现的队列类中,假定数组长度为MS,队首元素位置为first,队列长度为length,则队首的后一个位置为( )。

A.first+1

B.(first+1)%MS

C.(first-1)%MS

D.(first+length)%MS


正确答案:B

第7题:

数据结构里,栈是后进先出的线性表,后进先出英文是()。

  • A、Last In First Out
  • B、First In First Out
  • C、不确定
  • D、都不对

正确答案:A

第8题:

One attribute of the stack is(72).

A.FIFO( First In First Out)

B.LIFO( Last In First Out)

C.queue

D.built into their circuitry


正确答案:B
解析:译文:堆栈的性质之一是后进先出。

第9题:

栈的特性是后进先出又称为LIFO表,那么后进先出的英文是()。

  • A、First In Last Out
  • B、First In First Out
  • C、Last In Last Out
  • D、Last In First Out

正确答案:D

第10题:

数据结构里,先进先出是队列的特性,其英文是()。

  • A、First In First Out
  • B、Last In First Out
  • C、Last In last Out
  • D、都不对

正确答案:A