当前位置:首页
> Luz 第6785页
Luz 管理员
暂无介绍
89858 篇文章 33 次评论In hashing with open addressing to solve collisions, the operari
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
In hashing, when the loading density approaches 1, the operarion INSERTION will be seriously slowed down if the separate…
为了检查以下if-else语句的两个分支是否正确,至少需要设计2组测试用例,即`number`的取值至少有两组(偶数和奇数)。
为了检查以下if-else语句的两个分支是否正确,至少需要设计2组测试用例,即`number`的取值至少有两组(偶数和奇数)。 ``` if(number % 2 == 0){ printf("Tne number is even…
执行以下程序段后,`y`的值为-1。
执行以下程序段后,`y`的值为-1。 ```c++ x = -1; if (x ˂ 0){ y = -1; } y = 0; ``` ~@[](1)答案:FALSE…
以下定义了一个一维数组`str`,该数组可以存放81个字符型数据。
以下定义了一个一维数组`str`,该数组可以存放81个字符型数据。 ``` char str[81]; ``` ~@[](1)答案:TRUE…
语句 `int *p[5];` 定义了一个指针数组`p`,用于指向一个有5个元素的数组。
语句 `int *p[5];` 定义了一个指针数组`p`,用于指向一个有5个元素的数组。 ~@[](1)答案:FALSE…
对于 `int` 型的二级指针变量,它既可以指向同类型的一级指针变量,也可以指向同类型的普通(非指针)变量。
对于 `int` 型的二级指针变量,它既可以指向同类型的一级指针变量,也可以指向同类型的普通(非指针)变量。 ~@[](1)答案:FALSE…