博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
B00013 字符串哈希函数
阅读量:6252 次
发布时间:2019-06-22

本文共 3404 字,大约阅读时间需要 11 分钟。

哈希算法将任意长度的二进制值映射为较短的固定长度的二进制值,这个小的二进制值称为哈希值。

哈希函数用途广泛,这个程序给出了绝大多数常用的哈希函数。源程序来自:。

程序员可以根据自己的需要取用这些代码。

需要注意的是,有可能string类的方法已经发生变化。实际使用以下程序的时候,写成str.charAt(i)编译通过不了,改为str.at(i)则编译通过。

另外,这个代码并不是优化的代码,对字符串处理没有使用字符指针,处理效率低。

源程序如下:

class GeneralHashFunctionLibrary{    /*RSHash*/    public long RSHash(String str)    {        int b = 378551;        int a = 63689;        long hash = 0;        for(int i = 0; i < str.length(); i++)        {            hash = hash * a + str.charAt(i);            a = a * b;         }         return hash;     }    /*JSHash*/    public long JSHash(String str)    {        long hash = 1315423911;        for(int i = 0; i < str.length(); i++)            hash ^= ((hash << 5) + str.charAt(i) + (hash >> 2));        return hash;    }    /*PJWHash*/    public long PJWHash(String str)    {        long BitsInUnsignedInt = (long)(4 * 8);        long ThreeQuarters = (long)((BitsInUnsignedInt * 3) / 4);        long OneEighth = (long)(BitsInUnsignedInt / 8);        long HighBits = (long)(0xFFFFFFFF)<<(BitsInUnsignedInt-OneEighth);        long hash = 0;        long test = 0;        for(int i = 0; i < str.length(); i++)        {            hash = (hash << OneEighth) + str.charAt(i);            if((test = hash & HighBits) != 0)                hash = ((hash ^ (test >> ThreeQuarters)) & (~HighBits));        }        return hash;    }    /*ELFHash*/    public long ELFHash(String str)    {        long hash = 0;        long x = 0;        for(int i = 0; i < str.length(); i++)        {            hash = (hash << 4) + str.charAt(i);            if(( x = hash & 0xF0000000L) != 0)            hash ^= ( x >> 24);            hash &= ~x;        }        return hash;    }    /*BKDRHash*/    public long BKDRHash(String str)    {        long seed = 131;//31131131313131131313etc..        long hash = 0;        for(int i = 0; i < str.length(); i++)        hash = (hash * seed) + str.charAt(i);        return hash;    }    /*SDBMHash*/    public long SDBMHash(String str)    {        long hash = 0;        for(int i = 0; i < str.length(); i++)        hash = str.charAt(i) + (hash << 6) + (hash << 16) - hash;        return hash;    }    /*DJBHash*/    public long DJBHash(String str)    {        long hash = 5381;        for(int i = 0; i < str.length(); i++)        hash = ((hash << 5) + hash) + str.charAt(i);        return hash;    }    /*DEKHash*/    public long DEKHash(String str)    {        long hash = str.length();        for(int i = 0; i < str.length(); i++)            hash = ((hash << 5) ^ (hash >> 27)) ^ str.charAt(i);        return hash;    }    /*BPHash*/    public long BPHash(String str)    {        long hash=0;        for(int i = 0;i < str.length(); i++)        hash = hash << 7 ^ str.charAt(i);        return hash;    }    /*FNVHash*/    public long FNVHash(String str)    {        long fnv_prime = 0x811C9DC5;        long hash = 0;        for(int i = 0; i < str.length(); i++)     {        hash *= fnv_prime;        hash ^= str.charAt(i);    }        return hash;    }    /*APHash*/    long APHash(String str)    {        long hash = 0xAAAAAAAA;        for(int i = 0; i < str.length(); i++)        {            if((i & 1) == 0)                hash ^=((hash << 7) ^ str.charAt(i) ^ (hash >> 3));            else                hash ^= (~((hash << 11) ^ str.charAt(i) ^ (hash >> 5)));        }        return hash;    }}

转载于:https://www.cnblogs.com/tigerisland/p/7564728.html

你可能感兴趣的文章
在尝试重新安装一个服务时遇到这样的错误:指定服务已标记为删除
查看>>
我的Android开发相关文章
查看>>
20141029
查看>>
Windows Server 2012如果打开网页慢下载快的话
查看>>
【反传销】春节一个短暂误入传销和脱身的真实故事以及对技术的思考(二)回家之路...
查看>>
166. Fraction to Recurring Decimal
查看>>
(转)Java线程:新特征-条件变量
查看>>
建立ORACLE10G DATA GUARD---&gt;Physical Standby
查看>>
Python pyenv
查看>>
使用LotusScript操作Lotus Notes RTF域
查看>>
IPv4头部结构具体解释
查看>>
帕雷托最优(Pareto optimality)、帕雷托效率(Pareto efficiency)
查看>>
PHP 面向对象
查看>>
getResourceAsStream和getResource的用法及Demo实例
查看>>
[C#] string 与 String,大 S 与小 S 之间没有什么不可言说的秘密
查看>>
javascript 自定义错误处理
查看>>
POJ 3278 Catch That Cow(BFS,板子题)
查看>>
Ubuntu下U盘只读文件系统,图标上锁,提示无法修改
查看>>
TCP/IP具体解释学习笔记--TCP的超时与重传
查看>>
C#设计模式之十一享元模式(Flyweight Pattern)【结构型】
查看>>