-->
当前位置:首页 > Luz 第6594页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

Given a hash table with size 13. If only the positions with odd

Luz5年前 (2021-05-10)1570
Given a hash table with size 13. If only the positions with odd (奇数) indices are occupied (the index starts from 0), th…

If quadratic probing is used to resolve collisions, then a new i

Luz5年前 (2021-05-10)1210
If quadratic probing is used to resolve collisions, then a new insertion must be successful if the size of the hash tabl…

在switch语句中,不一定使用break语句。

Luz5年前 (2021-05-10)1019
在switch语句中,不一定使用break语句。 ~@[](1)答案:TRUE…

Quadratic probing is equivalent to double hashing with a seconda

Luz5年前 (2021-05-10)1350
Quadratic probing is equivalent to double hashing with a secondary hash function of $$Hash_2(k) = k$$. ~@[](2)答案:FALSE…

Linear probing is equivalent to double hashing with a secondary

Luz5年前 (2021-05-10)1408
Linear probing is equivalent to double hashing with a secondary hash function of $$Hash_2(k)= 1$$ . ~@[](2)答案:TRUE…

任何AVL树的中序遍历结果是有序的(从小到大)。

Luz5年前 (2021-05-10)1642
任何AVL树的中序遍历结果是有序的(从小到大)。 ~@[](2)答案:TRUE…

An array subscript can be of data type double .

Luz5年前 (2021-05-10)1250
An array subscript can be of data type double . ~@[](1)答案:FALSE…

After the first run of Insertion Sort, it is possible that no el

Luz5年前 (2021-05-10)2199
After the first run of Insertion Sort, it is possible that no element is placed in its final position. ~@[](2)答案:TRUE…

The best case time complexity of sorting algorithms based only o

Luz5年前 (2021-05-10)1093
The best case time complexity of sorting algorithms based only on comparisons is at least $$O(NlogN)$$. ~@[](1)答案:FALSE…

If there are less than 20 inversions in an integer array, then I

Luz5年前 (2021-05-10)1975
If there are less than 20 inversions in an integer array, then Insertion Sort will be the best method among Quick Sort,…