填空题

在深度为5的完全二叉树中,度为2的结点数最多为______。

【参考答案】

O
<上一题 目录 下一题>
热门 试题

单项选择题
有如下程序: #include<iostream> using namespace std; class A public: A()cout<< A ; ; classBpublic:B().cout<< B ; classC:public A B b; public: C()cout<< C ; ; int main() C obj; return 0; 执行后的输出结果是
A.CBA
B.BAC
C.ACB
D.ABC
单项选择题
有如下程序: #include<iostream.h> using namespace std; class Demo public: Demo() cont<< default constructor n ; Demo(const Demo &x) cont<< copy constructor n ; ; Demo userCode(Demo b)Demo c(b);return c; int main() Demo a,d; cout<< calling userCode() n ; d=userCode(
A.;
&n
相关试题
  • 下列程序的输出结果是______。 #in...
  • ______允许用户为类定义一种模式,使...
  • 下列程序的输出结果为2,请将程序补充完整...
  • 以下函数模板max()的功能是:返回数组a中...
  • 有如下程序: #include<iostream> usi...