1 Star 0 Fork 0

Velcon-Zheng/bowtie

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
str_util.h 414 Bytes
一键复制 编辑 原始数据 按行查看 历史
langmead 提交于 2009-08-15 13:31 . *** empty log message ***
#ifndef STR_UTIL_H_
#define STR_UTIL_H_
#include <string>
/**
* Given a string, return an int hash for it.
*/
static inline int
hash_string(const std::string& s) {
int ret = 0;
int a = 63689;
int b = 378551;
for(size_t i = 0; i < s.length(); i++) {
ret = (ret * a) + (int)s[i];
if(a == 0) {
a += b;
} else {
a *= b;
}
if(a == 0) {
a += b;
}
}
return ret;
}
#endif /* STR_UTIL_H_ */
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Velcon-Zheng/bowtie.git
git@gitee.com:Velcon-Zheng/bowtie.git
Velcon-Zheng
bowtie
bowtie
master

搜索帮助