百科问答小站 logo
百科问答小站 font logo



请问这段代码是什么意思,据说能让人月入过w? 第1页

  

user avatar   lu-mi-ya-56 网友的相关建议: 
      

这是DJB2 hash算法,用途将一个字符串映射为一个整数,由Daniel J. Bernstein在1991年发明……

       hash(unsigned char *str) {     unsigned long hash = 5381;     int c;      while (c = *str++)         hash = ((hash << 5) + hash) + c; /* hash * 33 + c */      return hash; }     

介绍可以看这里

Written by Daniel J. Bernstein (also known as djb), this simple hash function dates back to 1991.
Hash functions have wide applications in computer science and in cryptography. They are used to map a potentially large amount of data to a number that represents it.
For example, the hash function from this code snippet maps Hello to 210676686969, but Hello! to 6952330670010. Despite the fact there’s only one character different (the exclamation mark), the number returned is completely different.



  

相关话题

  这种代码命名规范,到底好不好? 
  这些英文缩写应该怎么念? 
  如果华为自己做手机操作系统,你对这个操作系统有什么建议? 
  一百行以下有哪些给力代码? 
  作为程序员,是什么让你坚持不懈地学习?难道不累吗? 
  怎样评价《数码宝贝》第一部中的泉光子郎的编程水平? 
  电气专业和计算机结合有什么方向或者需要学习什么? 
  微信红包的随机算法是怎样实现的? 
  零基础如何学爬虫技术? 
  怎样成为全栈工程师(Full Stack Developer)? 

前一个讨论
为什么现在的男孩子谈恋爱都喜欢白嫖?
下一个讨论
有律师执照的律师,真的可以随时说出某个人违反了什么法、第几条吗?





© 2024-11-09 - tinynew.org. All Rights Reserved.
© 2024-11-09 - tinynew.org. 保留所有权利