网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
假定一个顺序循环队列的队首和队尾指针分别用front和rear表示,则判队空的条件是()
- A、front+1==rear
- B、front==rear+1
- C、front==0
- D、front==rear
参考答案
更多 “假定一个顺序循环队列的队首和队尾指针分别用front和rear表示,则判队空的条件是()A、front+1==rearB、front==rear+1C、front==0D、front==rear” 相关考题
考题
在循环队列中,若front与rear分别表示对头元素和队尾元素的位置,则判断循环队列空的条件是()。A.front==rear+1B.rear==front+1C.front==rearD.front==0
考题
设数组data[0…m]作为循环队列sq的存储空间,front为队头指针,rear为队尾指针,则执行出队操作的语句为A.sq↑.front:=sq↑.front+1;B.sq↑.front:=(sq↑.front+1)%maxsize ;C.sq↑.rear:=(sq↑.rear+1)%maxsize ;D.sq↑.front:=(sq↑.front+1)%(maxsize+1);
考题
循环队列Q的元素出队时的队头指针操作是()
A、rear=(rear+1)%sizeB、rear=rear+1C、front=(front+1)%sizeD、front=(front-1)%size
考题
在一个链队列中,假定front和rear分别为队首和队尾指针,则删除一个结点的操作为()。
A、front=front->nextB、rear=rear->nextC、rear=front->nextD、front=rear->next
考题
设数组Data[0..m]作为循环队列SQ的存储空间,front为队头指针,rear为队尾指针,则执行出队操作的语句为()
:Afront=front+1Bfront=(front+1)% mCrear=(rear+1)%mDfront=(front+1)%(m+1)
考题
假定一个链队的队首和队尾指针分别为front和rear,则判断队空的条件为______。A.front=rearB.front!=NULLC.rear!=NULLD.front=NULL
考题
在具有n个单元的顺序存储的循环队列中,假定指针front和rear分别指向队首和队尾,则判断队列为空的条件是(38),如果约定“以队尾指针所指位置的下一个位置是队首指针”表示队满,那么队列为满当且仅当(39)。A.front=rear+1B.rear=front+1C.front=realD.front=0
考题
设数组Data [0..m)作为循环队列SQ的存储空间,front 为队头指针,rear 为队尾指针,则执行出队操作的语句为(60)。A.front=(front+1)%(m+1)B.front=(front+1)%mC.rear=(rear+1)%mD.front=front+1
考题
假定一个链队列的队首和队尾指针分别为front和rear,则判断队空的条件为( )。A.front==rearB.front!=NULLC.rear!=NULLD.front==NULL
考题
C语言数组Data[m+1]作为循环队列SQ的存储空间,front为队头指针,rear为队尾指针,则执行出队操作的语句为( )A.front=front+1B.front=(front+1)%mC.rear=(rear+1)%mD.front=(front+1)%(m+1)
考题
以数组Data[m+1]作为循环队列SQ的存储空间,front为头指针,rear为队尾指针,则执行出队操作的语句是()。A.front=front+1
B.front=(front+1)%m
C.front=(front+1)%(m+1)
D.rear=(rear+1)%m
考题
在一个链队列中,假定front和rear分别为队首和队尾指针,则删除一个结点的操作为()A、front=front-next B、rear=rear-next C、rear=front-next D、front=rear-next
考题
若循环队列有 n个顺序存储单元,front、rear分别为队首和队尾元素的下标,front指向队首元素之前的一个位置,为则判断队满的条件是()。A、 front = =rearB、 (front-1)%n= =rearC、 (rear+1)%n= =frontD、 (rear-1)%n= = front
考题
设数组data[m]作为循环队列SQ的存储空间,front为队头指针,rear为队尾指针,则执行出队操作后其头指针front值为()。A、front=front+1B、front=(front+1)%(m-1)C、front=(front-1)%mD、front=(front+1)%m
考题
在具有n个单元的顺序存储的循环队列中,假定front和rear分别为队头指针和队尾指针,则判断队满的条件为()A、rear%n= = frontB、(front+l)%n= = rearC、rear%n -1= = frontD、(rear+l)%n= = front
考题
假定一个顺序循环队列存储于数组a[n]中,其队首和队尾指针分别用front和rear表示,则判断队满的条件为()A、(rear - 1)% n == frontB、(rear + 1)% n == frontC、(front - 1)% n == rearD、(front + 1)% n == rear
考题
假定一个顺序循环队列存储于数组A[n]中,其队首和队尾指针分别用front和rear表示,则判断队满的条件是()A、(rear-1)%n==frontB、(rear+1)%n==frontC、rear==(front-1)%nD、rear==(front+1)%n
考题
在具有n个单元的顺序存储的循环队列中,假定front和rear分别为队头指针和队尾指针,则判断队空的条件为()A、rear%n= = frontB、front+l= rearC、rear= = frontD、(rear+l)%n= front
考题
若循环队列有 n个顺序存储单元,front、rear分别为队首和队尾元素的下标,front指向队首元素之前的一个位置,为则判断队空的条件是()。A、 front = =rearB、 (front-1)%n= =rearC、 (rear+1)%n= =frontD、 (rear-1)%n= = front
考题
最大容量为n的循环队列,队尾指针是rear,队头是front,则队空的条件是()。A、(rear+1)%n==frontB、rear==frontC、rear+1==frontD、(rear-l)%n==front
考题
单选题假定一个顺序循环队列的队首和队尾指针分别用front和rear表示,则判队空的条件是()A
front+1==rearB
front==rear+1C
front==0D
front==rear
考题
单选题假定一个顺序循环队列存储于数组A[n]中,其队首和队尾指针分别用front和rear表示,则判断队满的条件是()A
(rear-1)%n==frontB
(rear+1)%n==frontC
rear==(front-1)%nD
rear==(front+1)%n
考题
单选题假定一个顺序循环队列存储于数组a[n]中,其队首和队尾指针分别用front和rear表示,则判断队满的条件为()A
(rear - 1)% n == frontB
(rear + 1)% n == frontC
(front - 1)% n == rearD
(front + 1)% n == rear
热门标签
最新试卷