填空题
关系中的属性或属性组合,其值能够惟一地标识一个元组,该属性或属性组合可选作为
【5】
。
【参考答案】
键
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有以下程序: #include <iostream> using namespace std; class count static int n; public: count ( ) n++; static int test() for (int i = 0; i < 4; i++ ) n++; return n; ; int count :: n = 0; int main() cout<<count :: test()<< ; count c1, c2; cout<<count :: test()<<end1; return 0; 执行后的输出结果是( )。
A.4 10
B.1 2
C.22
D.24
点击查看答案&解析
填空题
对于长度为n的有序线性表,在最坏情况下,二分查找需要比较log2n,那么顺序查找需要比较的次数是 【2】 。
点击查看答案&解析
相关试题
下面程序的运行结果为 【13】 。 #in...
有如下程序: #include <iostream> u...
有以下程序: #include <iostream> ...
表达式x=operator-(y,z)还可以表示为...
C++的类继承中,默认的继承方式是 【1...