标题:请教一个关于根据输入的数据返回一个数据的函数问题
只看楼主
gao12x
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2014-2-1
 问题点数:0 回复次数:0 
请教一个关于根据输入的数据返回一个数据的函数问题
short dohash(const char* thecall)
{
   char rootcall[10];     // need to copy call to remove ssid from parse
   char *p1 = rootcall;
  while ((*thecall != '-') && (*thecall != 0)) *p1++ = toupper(*thecall++);
     *p1 = 0;
  short hash = kkey;     // initialize with the key value
   short i = 0;
   short len = strlen(rootcall);
   char *ptr = rootcall;
  
  while (i < len) {         // loop through the string two bytes at a time
     hash ^= (*ptr++)<<8;   // xor high byte with accumulated hash
     hash ^= (*ptr++);     // xor low byte with accumulated hash
     i += 2;
   }
   return hash & 0x7fff;     // mask off the high bit so number is always positive
}


我理解的大概意思是THECALL=5位ASCII码的组合,但是thecall怎么计算呢,求执行方法或讲解
搜索更多相关主题的帖子: through 
2014-02-01 20:04



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-426986-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.133627 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved