#ifndef HASHSTR_H #define HASHSTR_H // hashstr.h // 8/1/2011 // See: http://www.cse.yorku.ca/~oz/hash.html #include "hashutil/hashutil.h" #include HASHUTIL_BEGIN_NAMESPACE enum : uint64_t { djb2_hash0 = 5381 }; /// djb2: h = h*33 + c template inline uint64_t djb2(const charT *str, uint64_t hash = djb2_hash0) { charT c; while ((c = *str++)) hash = ((hash << 5) + hash) + c; // hash * 33 + c return hash; } /// n: length template inline uint64_t djb2_n(const charT *str, size_t len, uint64_t hash = djb2_hash0) { while (len--) hash = ((hash << 5) + hash) + (*str++); // hash * 33 + c return hash; } /// sdbm: hash(i) = hash(i - 1) * 65599 + str[i]; template inline uint64_t sdbm(const charT *str, uint64_t hash = 0) { charT c; while ((c = *str++)) hash = c + (hash << 6) + (hash << 16) - hash; return hash; } template inline uint64_t loselose(const charT *str, uint64_t hash = 0) { charT c; while ((c = *str++)) hash += c; return hash; } HASHUTIL_END_NAMESPACE #endif // HASHSTR_H