填空题

数据结构的存储结构包括顺序、索引、散列和 【1】 四种。

【参考答案】

链接
<上一题 目录 下一题>
热门 试题

单项选择题
根据下面的程序,可以在主程序中使用的合法语句是( )。 #include <iostream> using namespace std; class Person{ int age; public: void SetAge(int x){age=x;} void ShowAge(){cout<< the Person’s age is <<age;} }; class Student:private Person{ public:int study_code; }; void main(){ Student wangqiang; wangqiang.study_code=23; }
A.wangqianage=231
B.wangqianSetage(23)
C.wangqianShowAge()
D.wangqianstudy_code=12
单项选择题
根据下面的程序,可以在主程序中使用的合法语句是( )。 #include <iostream> using namespace std; class Person{ int age; voidtest(){} public: Person(intage){this->age=age;} void ShowAge(){cout<< the Person’s age is ,<<age;} }; void main(){ Person wang(23); }
A.wanage=45
B.wanwang(45)
C.wanShowAge()
D.wantest()
相关试题
  • 下面程序执行的结果是 【15】 。#incl...
  • 下面程序执行的结果是 【14】 #includ...
  • 虚基类是含有 【13】 函数的类。
  • 面向对象的基本特点包括继承性、封装性和 ...
  • 在C++中,给一变量取别名,可以通过 【...