-->
当前位置:首页 > 题库

题库 第6290页

  • 最新
  • 浏览
  • 评论

单选题:For the result of accessing the keys 5,8 in order in the splay t

Luz5年前 (2021-05-10)1062
For the result of accessing the keys 5,8 in order in the splay tree in the following figure, which one of the following…

单选题:Insert 9, 8, 7, 2, 3, 5, 6, 4 into an initially empty AVL tree.

Luz5年前 (2021-05-10)708
Insert 9, 8, 7, 2, 3, 5, 6, 4 into an initially empty AVL tree. Which one of the following statements is FALSE? @[D](3)…

单选题:Insert 7, 8, 9, 2, 3, 5, 6, 4 into an initially empty AVL tree.

Luz5年前 (2021-05-10)836
Insert 7, 8, 9, 2, 3, 5, 6, 4 into an initially empty AVL tree. Which one of the following statements is FALSE? @[C](3)…

单选题:For the result of accessing the keys 4, 8 in order in the splay

Luz5年前 (2021-05-10)1019
For the result of accessing the keys 4, 8 in order in the splay tree in the following figure, which one of the following…

单选题:After deleting 10 from the red-black tree given in the figure, w

Luz5年前 (2021-05-10)1240
After deleting 10 from the red-black tree given in the figure, which one of the following statements must be FALSE? @…

单选题:A B+ tree of order 3 with 21 numbers has at most ___ nodes of de

Luz5年前 (2021-05-10)735
A B+ tree of order 3 with 21 numbers has at most ___ nodes of degree 2. @[D](3)A. 1B. 5C. 6D. 7A.1B.5C.6D.7答案:D…

单选题:C语言程序的执行,总是起始于( )。

Luz5年前 (2021-05-10)1242
C语言程序的执行,总是起始于( )。@[C](2)A. 程序中的第一条可执行语句B. 程序中的第一个函数C. main函数D. 包含文件中的第一个函数A.程序中的第一条可执行语句B.程序中的第一个函数C.main函数D.包含文件中的第…

单选题:设x和y均为int型变量,语句组`x+=y;y=x-y;x-=y;`的功能是( )。

Luz5年前 (2021-05-10)998
设x和y均为int型变量,语句组`x+=y;y=x-y;x-=y;`的功能是( )。@[B](2)A. 把x和y从小到大排列B. 交换x和y中的值C. 把x和y从大到小排列D. 无确定结果A.把x和y从小到大排列B.交换x和y中的值C.把x…

单选题:有定义语句:int x,y;若要通过`scanf("x=%d,y=%d",&x,&y);`语句使变量x得到数值11,变量y得到数

Luz5年前 (2021-05-10)1251
有定义语句:int x,y;若要通过`scanf("x=%d,y=%d",&x,&y);`语句使变量x得到数值11,变量y得到数值12,下面四组输入形式中,正确的( )。@[C](2)A. 11 12B. 11,12C. x=11,y=1…

单选题:有以下程序,其输出结果是( )。

Luz5年前 (2021-05-10)950
有以下程序,其输出结果是( )。```#include "stdio.h"main( ){ float x=1.0; int y; x++; y=x+1; printf("x=%f,y=%d",x,y);}```@[C](2)A.…