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

题库 第6509页

  • 最新
  • 浏览
  • 评论

The bottleneck of external sorting is to merge the records from

Luz5年前 (2021-05-10)1513
The bottleneck of external sorting is to merge the records from input buffers to the output buffers. ~@[](1)答案:FALSE…

Replacement selection is a method for generating longer runs in

Luz5年前 (2021-05-10)1364
Replacement selection is a method for generating longer runs in external sorting. ~@[](1)答案:TRUE…

Polyphase merge is a method for speeding up k-way merge in exter

Luz5年前 (2021-05-10)1226
Polyphase merge is a method for speeding up k-way merge in external sorting. ~@[](1)答案:FALSE…

To find the top 3 largest keys from 50 keys, selection sort runs

Luz5年前 (2021-05-10)1118
To find the top 3 largest keys from 50 keys, selection sort runs faster than heap sort. ~@[](2)答案:TRUE…

In external sorting, a $$k$$-way merging is usually used in orde

Luz5年前 (2021-05-10)1864
In external sorting, a $$k$$-way merging is usually used in order to reduce the number of passes and we will take the $$…

If there are 105 runs to be merged using 4 taps for 3-way merges

Luz5年前 (2021-05-10)1250
If there are 105 runs to be merged using 4 taps for 3-way merges, then distributing the runs unevenly as (17, 32, 56) wi…

If in a directed graph, every vertex is part of some cycle, then

Luz5年前 (2021-05-10)1101
If in a directed graph, every vertex is part of some cycle, then the graph must be strongly connected. ~@[](2)答案:FALSE…

If an undirected graph with 4 vertices is stored in a 1-D array

Luz5年前 (2021-05-10)1485
If an undirected graph with 4 vertices is stored in a 1-D array `G[]` as the following: ``` G[] = { 0, 1, 0, 1, 1, 0, 0,…

In a graph G, if we have to do BFS twice to visit every one of i

Luz5年前 (2021-05-10)1228
In a graph G, if we have to do BFS twice to visit every one of its vertices, then there must be two connected components…

The minimum spanning tree of a connected weighted graph with ver

Luz5年前 (2021-05-10)1667
The minimum spanning tree of a connected weighted graph with vertex set V={ A, B, C, D, E } and weight set W={ 1, 3, 2,…