填空题

顺序存储方法是把逻辑上相邻的结点存储在物理位置______的存储单元中。

【参考答案】

相邻。
<上一题 目录 下一题>
热门 试题

填空题
数据模型分为格式化模型与非格式化模型,层次模型与网状模型属于______。
单项选择题
有以下程序: Class Date public: Date(int y,int m,int d); year=y; month=m; day=d; Date(int y=2000) year=y; month=10; day=1;) Date(Date &d) year=d.year; month=d.month; day=d.day; void print() cout<<year<<“.”<<month<<“.”<<day<<endl; private: int year,month,day;; Date fun(Date d) Datetemp; temp=d; return temp; int main() Date date1(2000,1,1),date2(0,0,0); Date date3(datel); date2=fun(date3); return 0; 程序执行时,Date类的拷贝构造函数被调用的次数是( )。
A.2
B.3
C.4
D.5
相关试题
  • 已经int DBL(int n)return n+n;和lo...
  • 下列程序的运行结果是______。 #in...
  • 有以下程序: #include<iostream> usi...
  • 根据下面的主程序,完成类的一种构造函数的...
  • 下面是复数类complex的定义,其中作为友元...