标签:ar sp for bs amp as nbsp br har
LL hash(char*str){ int seed=131; LL h=0; for(int i=0;i<strlen(str);i++){ h=h*seed+str[i]; } return (h&0x7FFFFFFF);}
可以快速给短文本哈希,效率比map高很多倍
文本简单哈希
原文地址:http://www.cnblogs.com/csust-qwb/p/4161638.html