Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _CHAINCON_STRINGHASH_H_
00029 #define _CHAINCON_STRINGHASH_H_
00030
00031
00032
00033 #include <string>
00034
00035
00036 #include "chomp/system/config.h"
00037
00038
00039
00040
00041
00042
00043 inline int_t hashkey1 (const std::string &s)
00044 {
00045 int_t len = s. size ();
00046 if (len == 0)
00047 return 0;
00048 else if (len == 1)
00049 return static_cast<int_t> (s [0]) << 4;
00050 else if (len == 2)
00051 {
00052 return ((static_cast<int_t> (s [0]) & 0x5555u) << 12) ^
00053 ((static_cast<int_t> (s [1]) & 0xAAAAu));
00054 }
00055 else
00056 {
00057 return ((static_cast<int_t> (s [0]) & 0x9249u) << 16) ^
00058 ((static_cast<int_t> (s [len >> 1]) & 0x2492u)
00059 << 8) ^
00060 ((static_cast<int_t> (s [len - 1]) & 0x4924u)) ^
00061 (len << 12);
00062 }
00063 }
00064
00065
00066
00067 inline int_t hashkey2 (const std::string &s)
00068 {
00069 int_t len = s. size ();
00070 if (len == 0)
00071 return 0;
00072 else if (len == 1)
00073 return static_cast<int_t> (s [0]) << 7;
00074 else if (len == 2)
00075 {
00076 return ((static_cast<int_t> (s [0]) & 0xAAAAu) << 5) ^
00077 ((static_cast<int_t> (s [1]) & 0x5555u) << 15);
00078 }
00079 else
00080 {
00081 return ((static_cast<int_t> (s [len - 1]) & 0xC30Cu) << 15) ^
00082 ((static_cast<int_t> (s [0]) & 0x30C3u) << 7) ^
00083 ((static_cast<int_t> (s [len >> 1]) & 0x0C30u)
00084 << 1) ^
00085 (len << 9);
00086 }
00087 }
00088
00089
00090 #endif // _CHAINCON_STRINGHASH_H_
00091