Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
8f694f39
提交
8f694f39
authored
9月 02, 2014
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Better (non-universal) fast hash function
上级
7dcfa24a
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
20 行增加
和
15 行删除
+20
-15
TestPerfectHash.java
h2/src/test/org/h2/test/unit/TestPerfectHash.java
+11
-8
MinimalPerfectHash.java
h2/src/tools/org/h2/dev/hash/MinimalPerfectHash.java
+9
-7
没有找到文件。
h2/src/test/org/h2/test/unit/TestPerfectHash.java
浏览文件 @
8f694f39
...
@@ -136,7 +136,7 @@ public class TestPerfectHash extends TestBase {
...
@@ -136,7 +136,7 @@ public class TestPerfectHash extends TestBase {
if
(
index
<
badUntilLevel
)
{
if
(
index
<
badUntilLevel
)
{
return
0
;
return
0
;
}
}
return
StringHash
.
getFastHash
(
o
,
index
);
return
StringHash
.
getFastHash
(
o
,
index
,
seed
);
}
}
};
};
...
@@ -233,14 +233,17 @@ public class TestPerfectHash extends TestBase {
...
@@ -233,14 +233,17 @@ public class TestPerfectHash extends TestBase {
}
}
public
int
hashCode
(
int
index
,
int
seed
)
{
public
int
hashCode
(
int
index
,
int
seed
)
{
if
(
index
<
4
)
{
if
(
index
<
8
)
{
int
result
=
0
;
int
x
=
(
index
*
0x9f3b
)
^
seed
;
int
x
=
seed
+
index
;
int
result
=
seed
;
int
end
=
start
;
int
p
=
start
;
while
(
data
[
end
]
!=
'\n'
)
{
while
(
true
)
{
int
c
=
data
[
p
++]
&
255
;
if
(
c
==
'\n'
)
{
break
;
}
x
=
31
+
x
*
0x9f3b
;
x
=
31
+
x
*
0x9f3b
;
result
+=
x
*
(
1
+
(
data
[
end
]
&
255
));
result
^=
x
*
(
1
+
c
);
end
++;
}
}
return
result
;
return
result
;
}
}
...
...
h2/src/tools/org/h2/dev/hash/MinimalPerfectHash.java
浏览文件 @
8f694f39
...
@@ -645,8 +645,8 @@ public class MinimalPerfectHash<K> {
...
@@ -645,8 +645,8 @@ public class MinimalPerfectHash<K> {
return
o
.
hashCode
();
return
o
.
hashCode
();
}
else
if
(
index
<
8
)
{
}
else
if
(
index
<
8
)
{
// use a different hash function, which is fast but not
// use a different hash function, which is fast but not
// cryptographically secure
//
necessarily universal, and not
cryptographically secure
return
getFastHash
(
o
,
index
^
seed
);
return
getFastHash
(
o
,
index
,
seed
);
}
}
// this method is supposed to be cryptographically secure;
// this method is supposed to be cryptographically secure;
// we could use SHA-256 for higher indexes
// we could use SHA-256 for higher indexes
...
@@ -657,15 +657,17 @@ public class MinimalPerfectHash<K> {
...
@@ -657,15 +657,17 @@ public class MinimalPerfectHash<K> {
* A cryptographically weak hash function. It is supposed to be fast.
* A cryptographically weak hash function. It is supposed to be fast.
*
*
* @param o the string
* @param o the string
* @param x the seed
* @param index the hash function index
* @param seed the seed
* @return the hash value
* @return the hash value
*/
*/
public
static
int
getFastHash
(
String
o
,
int
x
)
{
public
static
int
getFastHash
(
String
o
,
int
index
,
int
seed
)
{
int
result
=
o
.
length
();
int
x
=
(
index
*
0x9f3b
)
^
seed
;
int
result
=
seed
+
o
.
length
();
for
(
int
i
=
0
;
i
<
o
.
length
();
i
++)
{
for
(
int
i
=
0
;
i
<
o
.
length
();
i
++)
{
x
=
31
+
x
*
0x9f3b
;
x
=
31
+
x
*
0x9f3b
;
result
+=
x
*
(
1
+
o
.
charAt
(
i
));
result
^=
x
*
(
1
+
o
.
charAt
(
i
));
}
}
return
result
;
return
result
;
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论