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

Luz 管理员

暂无介绍

89859 篇文章 33 次评论

若`int`型变量为`32`位的,则以下结构体型变量`a`的大小不一定是`13`字节。

Luz5年前 (2021-05-10)2403
若`int`型变量为`32`位的,则以下结构体型变量`a`的大小不一定是`13`字节。 ~@[](2) ``` struct Table{ char color; int length; int width;…

下面这段代码,打印输出的结果是`6666`。

Luz5年前 (2021-05-10)1735
下面这段代码,打印输出的结果是`6666`。 ~@[](2) ``` #include int main(){ int a,b; a = 0246; b = 6420; printf("%d", a+b)…

下面这段代码,打印输出的结果是 `3 6 1`。

Luz5年前 (2021-05-10)818
下面这段代码,打印输出的结果是 `3 6 1`。 ~@[](2) ``` #include int main(){ int a, b, c; a = 3; b = 7; c = ((a) || (b=6)…

$$2^N$$ and $$N^N$$ have the same speed of growth.

Luz5年前 (2021-05-10)905
$$2^N$$ and $$N^N$$ have the same speed of growth. ~@[](2)答案:FALSE…

$$NlogN^2$$ and $$NlogN$$ have the same speed of growth.

Luz5年前 (2021-05-10)1335
$$NlogN^2$$ and $$NlogN$$ have the same speed of growth. ~@[](2)答案:TRUE…

$$N$$ is $$O(\sqrt{N}logN)$$.

Luz5年前 (2021-05-10)738
$$N$$ is $$O(\sqrt{N}logN)$$. ~@[](2) 答案:FALSE…

下面这段代码,打印输出的结果是`3 6 0`。

Luz5年前 (2021-05-10)1635
下面这段代码,打印输出的结果是`3 6 0`。 ~@[](2) ``` #include int main(){ int a, b, c; a = 3; b = 7; c = ((!a) && (b=6)…

$$logN^2$$ is $$O(N)$$.

Luz5年前 (2021-05-10)915
$$logN^2$$ is $$O(N)$$. ~@[](2)答案:TRUE…

$$100logN$$ is $$O(N)$$.

Luz5年前 (2021-05-10)905
$$100logN$$ is $$O(N)$$. ~@[](1)答案:TRUE…

Given two sorted lists $$L1$$ and $$L2$$, the fastest algorithm

Luz5年前 (2021-05-10)1472
Given two sorted lists $$L1$$ and $$L2$$, the fastest algorithm for computing $$L1\bigcup L2$$ has time complexity $$\Th…