题库 第6001页
单选题:The following figure shows the AOE network of a project with 8 a
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
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
To describe the expression $$(x+y)*((x+y)/x)$$ using a directed acyclic graph, the least number of vertices needed is:…
单选题:下图所示的 AOE 网表示一项包含 8 个活动的工程。活动 d 的最早开始时间和最迟开始时间分别是:
下图所示的 AOE 网表示一项包含 8 个活动的工程。活动 d 的最早开始时间和最迟开始时间分别是:@[C](2)A. 3…
单选题:When selecting a sorting algorithm, which of the following facto
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$$,采用线性探查(线性探测再散列)法解
现有长度为 11 且初始为空的散列表 HT,散列函数是 $$H(key)=key\% 7$$,采用线性探查(线性探测再散列)法解决冲突。将关键字序列 87,40,30,6,11,22,98,20 依次插入到 HT 后,HT 查找失败的平均查…
单选题:选择一个排序算法时,除算法的时空效率外,下列因素中,还需要考虑的是:
选择一个排序算法时,除算法的时空效率外,下列因素中,还需要考虑的是:@[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
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`.
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 算法进行模式匹配,到匹配成功
设主串 T = `abaabaabcabaabc`,模式串 S = `abaabc`,采用 KMP 算法进行模式匹配,到匹配成功时为止,在匹配过程中进行的单个字符间的比较次数是:@[B](3)A. 9B. 10C. 12D. 15A.9B.…