填空题

数据结构分为逻辑结构和存储结构,循环队列属于______结构。

【参考答案】

存储 或 物理
<上一题 目录 下一题>
热门 试题

填空题
数据流图的类型有______和事务型。
填空题
有以下程序#include <iostream>using namespace std;class Base{int a;public:Base(int x) { a=x; }void show() { cout<<a; }class Derived: public Base{int b;public:Defived(int i):Base(i+ 1 ),b(i) {}void show() { cout<<b; }};int main(){Base b(5),*pb;Derived d(1);pb=&d;pb->show();return 0;}运行后的打印结果是______。
相关试题
  • 有如下程序:#include<iostream>using ...
  • 以下程序的执行结果是______。#incl...
  • 下列程序编译错误,是由于划线处缺少某个语...
  • 一个类中有______个析构函数。
  • 若要在程序文件中进行标准输入输出操作,则...