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

题库 第6001页

  • 最新
  • 浏览
  • 评论

单选题:The following figure shows the AOE network of a project with 8 a

Luz5年前 (2021-05-10)772
The following figure shows the AOE network of a project with 8 activities. The earliest and the latest completion times…

单选题:Delete a node $$v$$ from an AVL tree $$T_1$$, we can obtain anot

Luz5年前 (2021-05-10)1137
Delete a node $$v$$ from an AVL tree $$T_1$$, we can obtain another AVL tree $$T_2$$. Then insert $$v$$ into $$T_2$$, w…

单选题:To describe the expression $$(x+y)*((x+y)/x)$$ using a directed

Luz5年前 (2021-05-10)626
To describe the expression $$(x+y)*((x+y)/x)$$ using a directed acyclic graph, the least number of vertices needed is:…

单选题:下图所示的 AOE 网表示一项包含 8 个活动的工程。活动 d 的最早开始时间和最迟开始时间分别是:

Luz5年前 (2021-05-10)2784
下图所示的 AOE 网表示一项包含 8 个活动的工程。活动 d 的最早开始时间和最迟开始时间分别是:@[C](2)![GRE19-5.jpg](~/28de33de-076f-4f94-b856-445865994fb0.jpg)A. 3…

单选题:When selecting a sorting algorithm, which of the following facto

Luz5年前 (2021-05-10)1433
When selecting a sorting algorithm, which of the following factors must be taken into consideration besides the time and…

单选题:现有长度为 11 且初始为空的散列表 HT,散列函数是 $$H(key)=key\% 7$$,采用线性探查(线性探测再散列)法解

Luz5年前 (2021-05-10)2532
现有长度为 11 且初始为空的散列表 HT,散列函数是 $$H(key)=key\% 7$$,采用线性探查(线性探测再散列)法解决冲突。将关键字序列 87,40,30,6,11,22,98,20 依次插入到 HT 后,HT 查找失败的平均查…

单选题:选择一个排序算法时,除算法的时空效率外,下列因素中,还需要考虑的是:

Luz5年前 (2021-05-10)3913
选择一个排序算法时,除算法的时空效率外,下列因素中,还需要考虑的是:@[D](1)- I、数据的规模- II、数据的存储方式- III、算法的稳定性- IV、数据的初始状态A. 仅 IIIB. 仅 I、IIC. 仅 II、III、IVD.…

单选题:Given an initially empty hash table HT of size 11. The hash fun

Luz5年前 (2021-05-10)1071
Given an initially empty hash table HT of size 11. The hash function is $$H(key)=key\% 7$$, with linear probing used to…

单选题:Given a string T = `abaabaabcabaabc` and a pattern S = `abaabc`.

Luz5年前 (2021-05-10)1122
Given a string T = `abaabaabcabaabc` and a pattern S = `abaabc`. if KMP method is used to match the pattern, then for h…

单选题:设主串 T = `abaabaabcabaabc`,模式串 S = `abaabc`,采用 KMP 算法进行模式匹配,到匹配成功

Luz5年前 (2021-05-10)2804
设主串 T = `abaabaabcabaabc`,模式串 S = `abaabc`,采用 KMP 算法进行模式匹配,到匹配成功时为止,在匹配过程中进行的单个字符间的比较次数是:@[B](3)A. 9B. 10C. 12D. 15A.9B.…