One attribute of the stack is(72).A.FIFO( First In First Out)B.LIFO( Last In First Out)C.queueD.built into their circuitry

题目

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


相似考题
更多“One attribute of the stack is(72).A.FIFO( First In First Out)B.LIFO( Last In First Out)C.q ”相关问题
  • 第1题:

    Whatarethethreemodelsofqualityofservice(QoS)inanetwork?()

    A.ResourceReservationProtocol(RSVP)

    B.first-in,first-out(FIFO)

    C.best-effort

    D.CBWFQ

    E.IntServ

    F.DiffServ


    参考答案:C, E, F

  • 第2题:

    数组q[M]存储一个循环队,first和last分别是首尾指针。如果使元素x出队操作的语句为“first=(first+1)%m, x=q[first];”。那么元素x进队的语句是_____。

    A.last=(last+1)%m,q[last]=x;

    B.x=q[last], last =(last+1)%m;

    C.q[last+1]=x;

    D.q[(last+1)%m]=x;


    (last- first+M)%M

  • 第3题:

    11、数组q[M]存储一个循环队,first和last分别是首尾指针。如果使元素x出队操作的语句为“first=(first+1)%m, x=q[first];”。那么元素x进队的语句是_____。

    A.last=(last+1)%m,q[last]=x;

    B.x=q[last], last =(last+1)%m;

    C.q[last+1]=x;

    D.q[(last+1)%m]=x;


    (last+1)%m= =first

  • 第4题:

    15、数组q[M]存储一个循环队,first和last分别是首尾指针。当前队中元素个数为_____。

    A.(last- first+M)%M

    B.last-first+1

    C.last-first-1

    D.last-first


    (last+1)%m= =first

  • 第5题:

    数组q[M]存储一个循环队,first和last分别是首尾指针。当前队中元素个数为_____。

    A.(last- first+M)%M

    B.last-first+1

    C.last-first-1

    D.last-first


    (last- first+M)%M

  • 第6题:

    1、数组q[M]存储一个循环队,first和last分别是首尾指针。当前队中元素个数为_____。

    A.(last- first+M)%M

    B.last-first+1

    C.last-first-1

    D.last-first


    4和0