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

题库 第6645页

  • 最新
  • 浏览
  • 评论

可以通过少用一个存储空间的方法解决循环队列假溢出现象。

Luz5年前 (2021-05-10)1682
可以通过少用一个存储空间的方法解决循环队列假溢出现象。 答案:FALSE…

When deleting the root of a binary search tree, we may find the

Luz5年前 (2021-05-10)1012
When deleting the root of a binary search tree, we may find the largest key $$K$$ from its left subtree, and then attach…

To prove the correctness of a greedy algorithm, we must prove th

Luz5年前 (2021-05-10)916
To prove the correctness of a greedy algorithm, we must prove that an optimal solution to the original problem always ma…

Let $$c_{1,j}$$ be the optimal solution for $$a_1$$ to $$a_j $$,

Luz5年前 (2021-05-10)1009
Let $$c_{1,j}$$ be the optimal solution for $$a_1$$ to $$a_j $$,
Let $$c_{1,j}$$ be the optimal solution for $$a_1$$ to $$a_j $$, and $$a_{k(j)}$$ is the nearest compatible activity to…

In a greedy algorithm, a decision made in one stage is not chang

Luz5年前 (2021-05-10)1099
In a greedy algorithm, a decision made in one stage is not changed in a later stage.答案:TRUE…

假设有变量定义语句`float f = 1234567890123.123456;`,打印语句` printf("f = %f"

Luz5年前 (2021-05-10)3102
假设有变量定义语句`float f = 1234567890123.123456;`,打印语句` printf("f = %f", f); ` 的输出是`f = 1234567954432.000000 `。那么可以这样解释这种想象:因为f…

已知字符`B`的ASCII码是66,那么也可以通过转义符`\`,用`'\66'`来表示字符常量`B`。

Luz5年前 (2021-05-10)10892
已知字符`B`的ASCII码是66,那么也可以通过转义符`\`,用`'\66'`来表示字符常量`B`。 ~@[](1)答案:FALSE…

二进制文件名不能用`.txt`作为扩展名,否则二进制文件读写函数fread和fwrite将出错。

Luz5年前 (2021-05-10)3031
二进制文件名不能用`.txt`作为扩展名,否则二进制文件读写函数fread和fwrite将出错。 ~@[](1)答案:FALSE…

一般不能用任何一个文本编辑器打开二进制文件进行阅读。

Luz5年前 (2021-05-10)1893
一般不能用任何一个文本编辑器打开二进制文件进行阅读。 ~@[](1)答案:TRUE…

在循环中continue语句的作用是退出循环的当前迭代。

Luz5年前 (2021-05-10)1467
在循环中continue语句的作用是退出循环的当前迭代。 答案:TRUE…