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

题库 第6459页

  • 最新
  • 浏览
  • 评论

It’s an error if an initializer list contains more initializers

Luz5年前 (2021-05-10)1158
It’s an error if an initializer list contains more initializers than there are elements in the array. ~@[](1)答案:TRUE…

An array can store many different types of values.

Luz5年前 (2021-05-10)1052
An array can store many different types of values. ~@[](1)答案:FALSE…

An individual array element that is passed to a function as an a

Luz5年前 (2021-05-10)1060
An individual array element that is passed to a function as an argument of the form a[i] and modified in the called fun…

For the recurrence equation $$T(N)=aT(N/b)+f(N)$$, if $$af(N/b)=

Luz5年前 (2021-05-10)944
For the recurrence equation $$T(N)=aT(N/b)+f(N)$$, if $$af(N/b)=Kf(N)$$ for some constant $$K˃1$$, then $$T(N)=\Theta(f(…

斐波那契数列$$F_N$$的定义为:$$F_0=0$$, $$F_1=1$$, $$F_N=F_{N-1}+F_{N-2}$$,

Luz5年前 (2021-05-10)913
斐波那契数列$$F_N$$的定义为:$$F_0=0$$, $$F_1=1$$, $$F_N=F_{N-1}+F_{N-2}$$, $$N$$=2, 3, …。用循环函数计算$$F_N$$的时间复杂度是$$\Theta (F_N)$$. ~@…

The 4-queen problem has exactly 2 distinct solutions.

Luz5年前 (2021-05-10)869
The 4-queen problem has exactly 2 distinct solutions. ~@[](2)答案:TRUE…

In the problem of $$N$$ Queens, since the game tree contains $$N

Luz5年前 (2021-05-10)906
In the problem of $$N$$ Queens, since the game tree contains $$N!$$ leaves, the space complexity for solving the problem…

If devide-and-conquer strategy is used to find the closest pair

Luz5年前 (2021-05-10)1712
If devide-and-conquer strategy is used to find the closest pair of points in a plane, unless the points are sorted not o…

对于一个零元素占比不到三分之二的整数矩阵来说,从存储空间的角度看,采用三元组存储并不是好的选择。

Luz5年前 (2021-05-10)1575
对于一个零元素占比不到三分之二的整数矩阵来说,从存储空间的角度看,采用三元组存储并不是好的选择。 ~@[](1)答案:TRUE…

稀疏矩阵采用三元组存储和满存(存储所有元素)比较,访问某个矩阵元素所需要的时间会增加。

Luz5年前 (2021-05-10)1669
稀疏矩阵采用三元组存储和满存(存储所有元素)比较,访问某个矩阵元素所需要的时间会增加。 ~@[](1)答案:TRUE…