For students going to London for the first time, which of the following provides the most reliable information?
A. University accommodation offices.
B. Loot and Renting
C. Noticeboards.
D. Family
第1题:
15、数组q[M]存储一个循环队,first和last分别是首尾指针。当前队中元素个数为_____。
A.(last- first+M)%M
B.last-first+1
C.last-first-1
D.last-first
第2题:
数组q[M]存储一个循环队,first和last分别是首尾指针。当前队中元素个数为_____。
A.(last- first+M)%M
B.last-first+1
C.last-first-1
D.last-first
第3题:
能获取系统当前时间分钟数的方法是以下哪个?
A.time.strftime(“% m”, time.localtime())
B.time.strftime(“%M”, time.localtime())
C.time.strftime(“%t”, time.localtime())
D.time.strftime(“%T”, time.localtime())
第4题:
数组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;
第5题:
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;
第6题:
1、数组q[M]存储一个循环队,first和last分别是首尾指针。当前队中元素个数为_____。
A.(last- first+M)%M
B.last-first+1
C.last-first-1
D.last-first