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

题库 第5995页

  • 最新
  • 浏览
  • 评论

单选题:For an in-order threaded binary tree, if the pre-order and in-or

Luz5年前 (2021-05-10)1077
For an in-order threaded binary tree, if the pre-order and in-order traversal sequences are `D A B C F E` and `B A C D E…

单选题:Which statement can initialize a one-dimensional array?

Luz5年前 (2021-05-10)687
Which statement can initialize a one-dimensional array? @[C](1)A. int a[10]=(0,0,0,0,0);B. int a[2]={0,1,2};C. int a[]…

单选题:Which one of the following is a possible postorder traversal seq

Luz5年前 (2021-05-10)1050
Which one of the following is a possible postorder traversal sequence of a binary search tree? @[C](3)A. `2 4 1 5 3 7…

单选题:Which one of the following is a possible postorder traversal seq

Luz5年前 (2021-05-10)638
Which one of the following is a possible postorder traversal sequence of a binary search tree? @[C](3)A. `3 1 6 2 5 8…

单选题:When inserting a new key `K` into a binary search tree `T` with

Luz5年前 (2021-05-10)662
When inserting a new key `K` into a binary search tree `T` with 511 nodes, the worst-case number of comparisons between…

单选题:Given the structure of a binary search tree (as shown in the fig

Luz5年前 (2021-05-10)1491
Given the structure of a binary search tree (as shown in the figure), which one of the following insertion sequences is…

单选题:Given the structure of a binary search tree (as shown in the fig

Luz5年前 (2021-05-10)1160
Given the structure of a binary search tree (as shown in the figure), which one of the following insertion sequences is…

单选题:执行如下程序段,打印输出的内容是:

Luz5年前 (2021-05-10)1477
执行如下程序段,打印输出的内容是: @[A](2)```#include void fun (int c, int *d) { c++; (*d)++;}int main ( ){ int a=1, b=2; f…

单选题:以下代码,语法正确的是:

Luz5年前 (2021-05-10)2461
以下代码,语法正确的是: @[C](2)A. `while ( ) ;`B. `for( ) ;`C. `do ; while(1);`D. `do while(1);`A.`while ( ) ;`B.`for( ) ;`C.`…

单选题:执行以下程序,打印输出的内容是:

Luz5年前 (2021-05-10)855
执行以下程序,打印输出的内容是: @[A](2)```#include int x=5;void incx( ){ x++;}int main( ){ int x=3; incx( ); printf("%d\n…