博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LintCode-Hash Function
阅读量:5267 次
发布时间:2019-06-14

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

In data structure Hash, hash function is used to convert a string(or any other type) into an integer smaller than hash size and bigger or equal to zero. The objective of designing a hash function is to "hash" the key as unreasonable as possible. A good hash function can avoid collision as less as possible. A widely used hash function algorithm is using a magic number 33, consider any string as a 33 based big integer like follow:

hashcode("abcd") = (ascii(a) * 333ascii(b) * 332ascii(c) *33 + ascii(d)) % HASH_SIZE 

                              = (97* 333 + 98 * 332 + 99 * 33 +100) % HASH_SIZE

                              = 3595978 % HASH_SIZE

here HASH_SIZE is the capacity of the hash table (you can assume a hash table is like an array with index 0 ~ HASH_SIZE-1).

Given a string as a key and the size of hash table, return the hash value of this key.f

 

Example

For key="abcd" and size=100, return 78

Clarification

For this problem, you are not necessary to design your own hash algorithm or consider any collision issue, you just need to implement the algorithm as described.

Analysis:

We need to be careful about overflow, when we calculate the intermiedate result, we need be careful with overflow.

Solution 1:

Use long type.

1 class Solution { 2     /** 3      * @param key: A String you should hash 4      * @param HASH_SIZE: An integer 5      * @return an integer 6      */ 7     public int hashCode(char[] key,int HASH_SIZE) { 8         if (key.length==0) return 0; 9         int res = 0;10         int base = 1;11         for (int i=key.length-1;i>=0;i--){12             res += modMultiply((int)key[i],base,HASH_SIZE);;13             res %= HASH_SIZE;14             base = modMultiply(base,33,HASH_SIZE);15         }16         return res;17     }18 19     public int modMultiply(long a, long b, int HASH_SIZE){        20         long temp = a*b%HASH_SIZE;21         return (int) temp;22     }23         24 };

Solution 2:

Use int type to perform the multiply. However, change the way to calculate the whole expression. Using the way used in solution 1 will cause TLE.

1 class Solution { 2     /** 3      * @param key: A String you should hash 4      * @param HASH_SIZE: An integer 5      * @return an integer 6      */ 7     public int hashCode(char[] key,int HASH_SIZE) { 8         if (key.length==0) return 0; 9         int res = 0;10         int base = 33;11         for (int i=0;i
=0) res = res+temp;25 else res = res + a;26 }27 return res;28 }29 30 };

 

 

转载于:https://www.cnblogs.com/lishiblog/p/4183784.html

你可能感兴趣的文章
CSS3选择器(二)之属性选择器
查看>>
adidas crazylight 2018 performance analysis review
查看>>
typeset shell 用法
查看>>
python 之 循环语句
查看>>
心得25--JDK新特性9-泛型1-加深介绍
查看>>
[转]ceph网络通信模块_以monitor模块为例
查看>>
HDOJ 1754 I Hate It(线段树基本操作)
查看>>
latex tree
查看>>
安装NVIDIA驱动时禁用自带nouveau驱动
查看>>
HDU-1255 覆盖的面积 (扫描线)
查看>>
css3学习01
查看>>
【USACO】 奶牛会展
查看>>
ActiveMQ笔记之点对点队列(Point-to-Point)
查看>>
继承和多态
查看>>
Dijkstra+计算几何 POJ 2502 Subway
查看>>
修复IE不能执行JS的方法
查看>>
程序员究竟该如何提高效率zt
查看>>
希尔排序法(缩小增量法)
查看>>
PHP编程基础学习(一)——数据类型
查看>>
MongoDB-JAVA-Driver 3.2版本常用代码全整理(2) - 查询
查看>>