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

题库 第6470页

  • 最新
  • 浏览
  • 评论

For a skew heap with $$N$$ nodes, the worst-case running time of

Luz5年前 (2021-05-10)701
For a skew heap with $$N$$ nodes, the worst-case running time of all operations (insert/delete min/merge) is $$O(N)$$.…

第一二章:在HTML中,换行标记为“``”。

Luz5年前 (2021-05-10)1086
第一二章:在HTML中,换行标记为“``”。 ~@[](5)答案:FALSE…

第一二章:HTML语言是客户端技术的基础。

Luz5年前 (2021-05-10)838
第一二章:HTML语言是客户端技术的基础。 ~@[](5)答案:TRUE…

为了检查以下if-else语句的两个分支是否正确,至少需要设计2组测试用例,即x的取值至少有两组(不等于0的数和0)。

Luz5年前 (2021-05-10)3139
为了检查以下if-else语句的两个分支是否正确,至少需要设计2组测试用例,即x的取值至少有两组(不等于0的数和0)。 ``` if (x != 0){ y = 1 / x; } else{ y = 0; } ``` ~@[…

Statement `if(a=3) ; ` is avaliable.

Luz5年前 (2021-05-10)1104
Statement `if(a=3) ; ` is avaliable. ~@[](1)答案:TRUE…

声明构造方法时,可以使用private访问修饰符。

Luz5年前 (2021-05-10)2219
声明构造方法时,可以使用private访问修饰符。 ~@[](2) 答案:FALSE…

All function's formal parameters are public variable

Luz5年前 (2021-05-10)1014
All function's formal parameters are public variable ~@[](1)答案:FALSE…

The data type for return value of a function is the type of func

Luz5年前 (2021-05-10)1050
The data type for return value of a function is the type of function determined when the function is defined. ~@[](1)答…

当多个函数发生多层嵌套调用时,最后被调用的函数却最先结束。

Luz5年前 (2021-05-10)3325
当多个函数发生多层嵌套调用时,最后被调用的函数却最先结束。 ~@[](1)答案:TRUE…

To pass one row of a double-subscripted array to a method that r

Luz5年前 (2021-05-10)1712
To pass one row of a double-subscripted array to a method that receives a single-subscripted array, simply pass the name…