3 Star 1 Fork 0

漆夜/hash

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
HashAlgorithm.h 534 Bytes
一键复制 编辑 原始数据 按行查看 历史
漆夜 提交于 2015-09-08 01:12 . 增加头文件的函数注释
#ifndef HASHALGORITHM
#define HASHALGORITHM
#include <stdint.h>
#include <stdlib.h>
namespace HashSpace {
/**
* @brief hash 字符串哈希算法
* @param str 待hash的字符串
* @param str_len 字符串长度
* @param hash_type 哈希偏移标识
* @param case_sensitive 是否大消息敏感,默认是敏感的
* @return 哈希值
*/
uint64_t hash(const char *str, size_t str_len, uint32_t hash_type = 1, bool case_sensitive = true);
}
#endif //HASHALGORITHM
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/www.evangerlion.com/hash.git
git@gitee.com:www.evangerlion.com/hash.git
www.evangerlion.com
hash
hash
master

搜索帮助