第7题
Given input{4371,1323,6173,4199,4344,9679,1989}and a hash funtion
h(X) = (X mod 10),show the results:
(b) open addressing hash table using quadratic probing (F(i)=3*i^2)
正常来说quadratic probing(二次方探测)应该是当f(x)发生溢位时
下一次探测的位址是(f(x)+i^2) mod b与(f(x)-i^2) mod b才对
所以若依照题目上的(F(i) = 3*i^2)的方式假如位置3发生溢位
我应该把资料放在 3*3^2 =27?还是再mod 10 = 7???是这样吗?
第8题
如果有题目再好不过了,因为题目有点长,我打关键字就好
(1)Merge Sort (2)Heap Sort (3)MST (4)Floyd-Warshall algo
(5)Find Max independent (6)Huffman's algo (7)Strassen's algo
(8)OBST (9)LCS problem (10) Ford-Fulkerson algo
有哪几个属于(a)Divide and Conquer (b)Dynamic Programming
(c)Greedy method (d)Others
这些算法都知道,但是无法很明确的肯定是哪个,想对对答案
(a)5 (b) 1,4,6,7,8,9 (c) 3,10 (d)2 求解感谢