填空题
当循环队列非空且队尾指针等于队头指针时,说明循环队列已满,不能进行人队运算。这种情况称为
【14】
。
【参考答案】
上溢
点击查看答案
<上一题
目录
下一题>
热门
试题
填空题
下列程序的输出结果是 【10】 。 #include<iostream> using namespace std; void fun(int &rf) rf*=2; int main() int num= 500; fun(num); cout<<num<<endl; return O;
点击查看答案
填空题
下列程序的输出结果是 【9】 。 #include<iostream> #include<cstring> using namespace std; void fun(const char*s,char &c) c=s[strlen(s) 2]; int main() char str[]= ABCDE ; char ch=str[1]; fun(str, ch); cout<<ch; return 0;
点击查看答案
相关试题
下面程序的功能是:将字符数组a中下标值为...