单项选择题

下列数据结构中,属于非线性结构的是( )。

A.循环队列
B.带链队列
C.二叉树
D.带链栈
<上一题 目录 下一题>
热门 试题

单项选择题
有如下程序: #include <iostream> using namespace std; class Base public: void fun()( cout<< Base::fun <<endl; ; class Derived: public Base public: void fun() ______ cout<< Derived::fun <<endl; ; int main() Derived d; D.fun(); return 0; 已知其执行后的输出结果为: Base::fun Derived::fun 则程序中下划线处应填入的语句是( )。
A.Base.fun();
B.Base::fun();
C.Base->fun();
D.fun();
单项选择题
C++源晚间中包含的输入 输出头文件为( )。
A.stdio.h
B.stdafx.h
C.iostream.h
D.stream.h
相关试题
  • 下列程序中需要清理动态分配的数组,划线处...
  • 设置虚基类的目的是解决二义性问题,通过用...
  • 表达式“c3=c1.operator+(c2)”或...
  • 虚函数必须是类的______。
  • 在面向对象的程序设计中,将数据和处理数据...