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

题库 第6474页

  • 最新
  • 浏览
  • 评论

Word stemming is to eliminate the commonly used words from the o

Luz5年前 (2021-05-10)1006
Word stemming is to eliminate the commonly used words from the original documents. ~@[](1)答案:FALSE…

When measuring the relevancy of the answer set, the precision is

Luz5年前 (2021-05-10)780
When measuring the relevancy of the answer set, the precision is low means that most of the retrieved documents are irre…

When measuring the relevancy of the answer set, the precision is

Luz5年前 (2021-05-10)837
When measuring the relevancy of the answer set, the precision is low means that most of the relevant documents are not r…

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

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

All the three expressions in for statement could be omitted in c

Luz5年前 (2021-05-10)1294
All the three expressions in for statement could be omitted in c. ~@[](1)答案:TRUE…

C 语言中的逻辑值“真”是用非0 表示的,逻辑值“假”是用0表示的。

Luz5年前 (2021-05-10)1544
C 语言中的逻辑值“真”是用非0 表示的,逻辑值“假”是用0表示的。 ~@[](1)答案:TRUE…

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

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

对于递推方程 $$T(N)=aT(N/b)+f(N)$$,若存在常数 $$K>1$$ 使得 $$af(N/b)=Kf(N)$$,

Luz5年前 (2021-05-10)951
对于递推方程 $$T(N)=aT(N/b)+f(N)$$,若存在常数 $$K˃1$$ 使得 $$af(N/b)=Kf(N)$$,则有 $$T(N)=\Theta(f(N))$$。 ~@[](2)答案:FALSE…

任何一个递归过程都可以转换成非递归过程。

Luz5年前 (2021-05-10)879
任何一个递归过程都可以转换成非递归过程。 ~@[](2)答案:TRUE…

给定两个 $$n\times n$$ 的矩阵 $$A$$ 和 $$B$$,计算矩阵乘法 $$C = A \cdot B$$ 的简

Luz5年前 (2021-05-10)1219
给定两个 $$n\times n$$ 的矩阵 $$A$$ 和 $$B$$,计算矩阵乘法 $$C = A \cdot B$$ 的简单方法的时间复杂度是 $$O(n^3)$$。下面考虑用分治法的思路解决这个问题: 将每个矩阵按如下方式分裂为四…