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

Luz 管理员

暂无介绍

89859 篇文章 33 次评论

队列的特性

Luz5年前 (2021-05-10)1163
队列的特性 队列是先进先出的线性表。~@[](1)答案:TRUE…

栈的特性

Luz5年前 (2021-05-10)1040
栈的特性 栈是先进先出的线性表。~@[](1)答案:FALSE…

若有定义:char ch='\105’;则变量ch中包含4个字符。

Luz5年前 (2021-05-10)4361
若有定义:char ch='\105’;则变量ch中包含4个字符。~@[](1)答案:FALSE…

在C语言中转义字符可以算是多个字符,如'\101’。

Luz5年前 (2021-05-10)5078
在C语言中转义字符可以算是多个字符,如'\101’。 ~@[](1)答案:FALSE…

语句`int *p;`和`printf("%d",*p);`中的*p含义相同。

Luz5年前 (2021-05-10)1897
语句`int *p;`和`printf("%d",*p);`中的*p含义相同。 ~@[](1)答案:FALSE…

$$(\log n)^2$$ is $$O(n)$$.

Luz5年前 (2021-05-10)929
$$(\log n)^2$$ is $$O(n)$$.~@[](2)答案:TRUE…

$$\sqrt n$$ is $$O(\log n)$$.

Luz5年前 (2021-05-10)826
$$\sqrt n$$ is $$O(\log n)$$.~@[](2)答案:FALSE…

Non recursive programs are generally faster than equivalent recu

Luz5年前 (2021-05-10)1762
Non recursive programs are generally faster than equivalent recursive programs. However, recursive programs are in gene…

If a directed graph G=(V, E) is weakly connected, then there mus

Luz5年前 (2021-05-10)2276
If a directed graph G=(V, E) is weakly connected, then there must be at least |V| edges in G.~@[](2)答案:FALSE…

For the extra space taken by an internal sorting algorithm, we h

Luz5年前 (2021-05-10)1028
For the extra space taken by an internal sorting algorithm, we have: heap sort ˂ quick sort ˂ merge sort.~@[](2)答案:TRUE…