填空题

算法复杂度主要包括时间复杂度和______复杂度。

【参考答案】

空间
<上一题 目录 下一题>
热门 试题

填空题
设一棵完全二叉树共有700个结点,则在该二叉树中有______个叶子结点。
单项选择题
若有以下程序: #include <iostream> using namespace std; class A public:
A()A(int i)x1=i;void dispa()cout<<"x1="<<x1<<",";private:
int x1;
;
class B:public Apublic:
B()
B(int i):A(i+10)x2=i;void dispb()dispa();
cout<<"x2="<<x2<<endl;pnvate:
int x2;
;
int main()B b(2);
b.dispb();
return 0;程序运行后的输出结果是(
)。A. x1=10,x2=2
B. x1=12,x2=10
C. x1=12,x2=2
D. x1=2,x2=2
相关试题
  • 阅读下面程序: #include <iostream.h...
  • 下列程序运行后的输出结果是______。...
  • 假设int a=1,b=2;,则表达式(++a...
  • 下列程序的输出结果为2,请将程序补充完整...
  • 在MyClass类的定义中,对赋值运算符=进行...