-->
当前位置:首页 > Luz 第6785页
Luz

Luz 管理员

暂无介绍

89859 篇文章 33 次评论

In most restaurants, we follow one principle called "First come,

Luz5年前 (2021-05-10)1061
In most restaurants, we follow one principle called "First come, first served". This principle can be implemented by a q…

In hashing with open addressing to solve collisions, the operari

Luz5年前 (2021-05-10)1149
In hashing with open addressing to solve collisions, the operarion FIND will be seriously slowed down if there are too m…

In hashing, when the loading density approaches 1, the operarion

Luz5年前 (2021-05-10)1051
In hashing, when the loading density approaches 1, the operarion INSERTION will be seriously slowed down if the separate…

`include `是正确的编译预处理命令。

Luz5年前 (2021-05-10)1460
`include `是正确的编译预处理命令。 ~@[](1)答案:FALSE…

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

Luz5年前 (2021-05-10)3770
为了检查以下if-else语句的两个分支是否正确,至少需要设计2组测试用例,即`number`的取值至少有两组(偶数和奇数)。 ``` if(number % 2 == 0){ printf("Tne number is even…

执行以下程序段后,`y`的值为-1。

Luz5年前 (2021-05-10)1777
执行以下程序段后,`y`的值为-1。 ```c++ x = -1; if (x ˂ 0){ y = -1; } y = 0; ``` ~@[](1)答案:FALSE…

以下定义了一个一维数组`str`,该数组可以存放81个字符型数据。

Luz5年前 (2021-05-10)5355
以下定义了一个一维数组`str`,该数组可以存放81个字符型数据。 ``` char str[81]; ``` ~@[](1)答案:TRUE…

语句 `int *p[5];` 定义了一个指针数组`p`,用于指向一个有5个元素的数组。

Luz5年前 (2021-05-10)5411
语句 `int *p[5];` 定义了一个指针数组`p`,用于指向一个有5个元素的数组。 ~@[](1)答案:FALSE…

对于 `int` 型的二级指针变量,它既可以指向同类型的一级指针变量,也可以指向同类型的普通(非指针)变量。

Luz5年前 (2021-05-10)5622
对于 `int` 型的二级指针变量,它既可以指向同类型的一级指针变量,也可以指向同类型的普通(非指针)变量。 ~@[](1)答案:FALSE…

JDK8.0之后,接口允许定义默认方法。

Luz5年前 (2021-05-10)1014
JDK8.0之后,接口允许定义默认方法。 ~@[](1)答案:TRUE…