| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 296 人关注过本帖
标题:请教一个关于根据输入的数据返回一个数据的函数问题
取消只看楼主 加入收藏
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
快速回复:请教一个关于根据输入的数据返回一个数据的函数问题
数据加载中...
 
   



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

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