摘要:import com.alibaba.fastjson.JSON; public class MergeSort { //将有序数组a[]和b[]合并到c[]中 void MemeryArray(int[] a, int n, int[] b, int m, int[] c) { int i, j,
阅读全文
摘要:######以下为64位和32位的hash值计算方法 public class HashUtil { private static final long FNV_64_INIT = 0xcbf29ce484222325L; private static final long FNV_64_PRIME
阅读全文