package comp1110.exam;
* COMP1110 Final Exam, Question 5
public class Q5Hash {
Copyright By PowCoder代写 加微信 powcoder
* Return a hash of the given value as an integer in the range 0 … buckets – 1.
* @param value The value to be hashed
* @param buckets The number of buckets into which the hash should be made (defining its range)
* @return An integer hash of value in the range 0 … buckets – 1.
public static int hash(int value, int buckets) {
return -1; // FIXME Question 5: complete this function
程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com