当前位置:首页
> Luz 第6598页
Luz 管理员
暂无介绍
89859 篇文章 33 次评论In a red-black tree, if an internal black node is of degree 1, t
In a red-black tree, if an internal black node is of degree 1, then it must have only 1 descendant node. ~@[](2)答案:TRUE…
For any node in an AVL tree, the height of the right subtree mus
For any node in an AVL tree, the height of the right subtree must be greater than that of the left subtree. ~@[](1)答案:FA…
A 2-3 tree with 12 leaves may have at most 10 nonleaf nodes.
A 2-3 tree with 12 leaves may have at most 10 nonleaf nodes. ~@[](2)答案:TRUE…
C语言中定义的静态变量存放在栈区,动态分配的内存空间位于堆区。
C语言中定义的静态变量存放在栈区,动态分配的内存空间位于堆区。 ~@[](2)答案:FALSE…
C语言中定义的全局变量存放在堆区,局部变量存放在栈区。
C语言中定义的全局变量存放在堆区,局部变量存放在栈区。 ~@[](2)答案:FALSE…
for语句的一般形式如下,若表达式2的值为“真”,则先执行循环体语句,再计算表达式3,然后继续循环。
for语句的一般形式如下,若表达式2的值为“真”,则先执行循环体语句,再计算表达式3,然后继续循环。 ``` for (表达式1; 表达式2; 表达式3) 循环体语句 ``` ~@[](1)答案:TRUE…
以下程序段中,break语句只执行一次。
以下程序段中,break语句只执行一次。 ``` n = 9; for(i = 1; i ˂= n; i++){ for(j = 1; j i){ break; }…
在嵌套循环(多层循环)中, 每一层循环中都不应该改变其他层使用的循环变量的值,以免互相干扰。
在嵌套循环(多层循环)中, 每一层循环中都不应该改变其他层使用的循环变量的值,以免互相干扰。 ~@[](1)答案:TRUE…