网易有道2017内推选择题
时长:60分钟 总分:100分
126浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 9 | 4 |
大小为MAX的循环队列中,f为当前对头元素位置,r为当前队尾元素位置,则任意时刻,队列中的元素个数为
则样本{x1=1.35,x2=1.45,x3=1.55,x4=1.65}各属于哪一类别?

请将下列构造函数补充完整,使得程序的运行结果是5
#include<iostream> using namespace std class Sample{ public: Sample(int x){ ________ } ~Sample(){ if(p) delete p } int show(){ return *p } private: int*p } int main(){ Sample S(5) cout<<S.show()<<endl return 0 }
在一个10阶的B-树上,每个树根结点中所含的关键字数目最多允许为( )个,最少允许为( )个。
下列程序编译时会出现错误,请根据行号选择错误位置( )
#include <iostream> using namespace std class A{ int a1 protected: int a2 public: int a3 } class B: public A{ int b1 protected: int b2 public: int b3 } class C:private B{ int c1 protected: int c2 public: int c3 } int main(){ B obb C obc cout<<obb.a1//1 cout<<obb.a2//2 cout<<obb.a3//3 cout<<obc.b1//4 cout<<obc.b2//5 cout<<obc.b3//6 cout<<obc.c3//7 return 0 }