Murmur下载_highwayhash

Murmur下载_highwayhashpackageorg.videolan.vlc;/**Murmurhash2.0.**Themurmurhashisarelativefasthashfunctionfrom*http://murmurhash.googlepages.com/forplatformswithefficient*multiplication.**Thisisare-i…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

package org.videolan.vlc;

/** Murmur hash 2.0.

*

* The murmur hash is a relative fast hash function from

* http://murmurhash.googlepages.com/ for platforms with efficient

* multiplication.

*

* This is a re-implementation of the original C code plus some

* additional features.

*

* Public domain.

*

* @author Viliam Holub

* @version 1.0.2

*

*/

public final class MurmurHash {

/** Generates 32 bit hash from byte array of the given length and

* seed.

*

* @param data byte array to hash

* @param length length of the array to hash

* @param seed initial seed value

* @return 32 bit hash of the given array

*/

public static int hash32(final byte[] data, int length, int seed) {

// ‘m’ and ‘r’ are mixing constants generated offline.

// They’re not really ‘magic’, they just happen to work well.

final int m = 0x5bd1e995;

final int r = 24;

// Initialize the hash to a random value

int h = seed ^ length;

int length4 = length / 4;

for (int i = 0; i < length4; i++) {

final int i4 = i * 4;

int k = (data[i4 + 0] & 0xff) + ((data[i4 + 1] & 0xff) << 8)

+ ((data[i4 + 2] & 0xff) << 16) + ((data[i4 + 3] & 0xff) << 24);

k *= m;

k ^= k >>> r;

k *= m;

h *= m;

h ^= k;

}

// Handle the last few bytes of the input array

switch (length % 4) {

case 3:

h ^= (data[(length & ~3) + 2] & 0xff) << 16;

case 2:

h ^= (data[(length & ~3) + 1] & 0xff) << 8;

case 1:

h ^= (data[length & ~3] & 0xff);

h *= m;

}

h ^= h >>> 13;

h *= m;

h ^= h >>> 15;

return h;

}

/** Generates 32 bit hash from byte array with default seed value.

*

* @param data byte array to hash

* @param length length of the array to hash

* @return 32 bit hash of the given array

*/

public static int hash32(final byte[] data, int length) {

return hash32(data, length, 0x9747b28c);

}

/** Generates 32 bit hash from a string.

*

* @param text string to hash

* @return 32 bit hash of the given string

*/

public static int hash32(final String text) {

final byte[] bytes = text.getBytes();

return hash32(bytes, bytes.length);

}

/** Generates 32 bit hash from a substring.

*

* @param text string to hash

* @param from starting index

* @param length length of the substring to hash

* @return 32 bit hash of the given string

*/

public static int hash32(final String text, int from, int length) {

return hash32(text.substring(from, from + length));

}

/** Generates 64 bit hash from byte array of the given length and seed.

*

* @param data byte array to hash

* @param length length of the array to hash

* @param seed initial seed value

* @return 64 bit hash of the given array

*/

public static long hash64(final byte[] data, int length, int seed) {

final long m = 0xc6a4a7935bd1e995L;

final int r = 47;

long h = (seed & 0xffffffffl) ^ (length * m);

int length8 = length / 8;

for (int i = 0; i < length8; i++) {

final int i8 = i * 8;

long k = ((long) data[i8 + 0] & 0xff) + (((long) data[i8 + 1] & 0xff) << 8)

+ (((long) data[i8 + 2] & 0xff) << 16) + (((long) data[i8 + 3] & 0xff) << 24)

+ (((long) data[i8 + 4] & 0xff) << 32) + (((long) data[i8 + 5] & 0xff) << 40)

+ (((long) data[i8 + 6] & 0xff) << 48) + (((long) data[i8 + 7] & 0xff) <<

(完整源码请下载查看)

展开> <收缩

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/180411.html原文链接:https://javaforall.net

(0)
上一篇 2022年10月19日 上午7:16
下一篇 2022年10月19日 上午7:16


相关推荐

  • mysql时区作用_mysql 时区问题

    mysql时区作用_mysql 时区问题1 问题源自何处 之前用的 mysql8 0 以上的版本连接时都需要在 url 后面加 serverTimezo UTC 实际上是指出核数据库的时区为美国 因为我们的数据库的时区是美国的 而我们连接的时候用的是中国的北京时间 然后比美国早上 8 个小时 然后呢用的时候就必须指出我们当前用的时间是美国的时间 这样才能连接上数据库 2 那么可不可以直接将数据库的默认时区改到中国呢 当然是可以的 如果是 wind

    2026年3月19日
    2
  • 腾讯混元T1-Vision上线元宝:一张图片就能分析出产品研发成本

    腾讯混元T1-Vision上线元宝:一张图片就能分析出产品研发成本

    2026年3月12日
    2
  • 如何解压 GZ 文件

    如何解压 GZ 文件Gzip 是一个流行的压缩算法 它可以在保持文件模式 归属 时间戳的前提下 压缩文件大小 这个算法经常被用来压缩网页元素 以便更快加载网页页面

    2025年12月11日
    11
  • QXDM 安装[通俗易懂]

    QXDM 安装[通俗易懂]http://download.microsoft.com/download/5/6/7/567758a3-759e-473e-bf8f-52154438565a/dotnetfx.exe

    2022年10月3日
    4
  • 未来最有市场发展前景的十大通信技术企业_各行业发展前景

    未来最有市场发展前景的十大通信技术企业_各行业发展前景未来最有市场发展前景的十大通信技术2003-03-2410:39/(通讯世界)  通信技术的发展已经脱离纯技术驱动的模式,正在走向技术与业务相结合、互动的新模式,从世界范围内,预计在未来十年,从市场应用和业务需求的角度看,最大和最深刻的变化将是从语音业务向数据业务的战略性转变,这种转变将深刻影响通信技术的走向。

    2025年10月27日
    5
  • c语言也能写植物大战僵尸吗_植物大战僵尸僵尸写的纸条

    c语言也能写植物大战僵尸吗_植物大战僵尸僵尸写的纸条不少同学都玩过《植物大战僵尸》,最近PopCap公司又带来了新版的消息,这次高兴的轮到Xbox的用户了,日前PopCap公司公布了《植物大战僵尸》XBLA版的截图,这个版本的《植物大战僵尸》引入了多人合作与对抗模式,看图就知道好玩多了又刺激多了。 详见游戏说明,游戏视频于是,我在非常强烈的好奇心和求知欲下,自己动手写了一个简易的双人

    2025年8月11日
    7

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号