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

题库 第6472页

  • 最新
  • 浏览
  • 评论

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

Luz5年前 (2021-05-10)820
下面这段代码,打印输出的结果是 `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)906
$$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)1336
$$NlogN^2$$ and $$NlogN$$ have the same speed of growth. ~@[](2)答案:TRUE…

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

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

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

Luz5年前 (2021-05-10)1637
下面这段代码,打印输出的结果是`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)917
$$logN^2$$ is $$O(N)$$. ~@[](2)答案:TRUE…

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

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

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

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

执行以下程序段,输入`1.1 0.01 365`,输出`1.1#0.010#365`。

Luz5年前 (2021-05-10)2510
执行以下程序段,输入`1.1 0.01 365`,输出`1.1#0.010#365`。 ~@[](1) ``` int day; double factor, initial; scanf("%lf %d %lf", &initia…

Computer system is consist of hardware and software.

Luz5年前 (2021-05-10)729
Computer system is consist of hardware and software. ~@[](3)答案:TRUE…