C语言高手帮帮忙看一下,我研究了好久都不知道为什么是死循环,自己编的CRC-16程序
代码如下,为什么就会陷入死循环呢?代码的意思是计算机网络里面的CRC检错,思路不是困难,应该能看懂,问了好几个网上的人没有好好回答我。请大神帮助,我弄好好多天了。。。。#include <stdio.h>
#include <string.h>
#define MAX 50
void fun1(char *p1,char *p2,char *p3,char *p4,int m)
{
int i,count=16;
char *p=p2,*q;
while(1)
{
while(*p=='0')
{
p++;
count++;
}
if(count>m) break;
p2=p;
for(i=1,q=p4;i<=17;i++,p2++)
{
(*p2)=(*p2-'0')^(*q-'0');
(*p2)+='0';
q++;
}
}
i=m-16;
p=p2;
for(p3=q;*q!='\0';q++);
for(i=m-16;(*(p+i))!='\0';p++,q++,m++) *p=*(p+i);
*p3='\0';
}
void fun2(char *p3,char *p4,char *p5,int m)
{
int i,count=16;
char *p=p3,*q;
while(1)
{
while(*p=='0')
{
p++;
count++;
}
if(count>m) break;
p3=p;
for(i=1,q=p4;i<=17;i++,p3++)
{
*p3=(*p3-'0')^(*q-'0');
*p3+='0';
q++;
}
}
while(*p!='\0')
{
*p5=*p;
p5++;
p++;
}
}
int main()
{
char a[MAX],b[MAX],c[MAX],d[18]={'1','1','0','0','0','0','0','0','0','0','0','0','0','0','1','0','1','\0'},e[16];
/* a[MAX]中存放的是待发送的位串,b[MAX]中存放的是添加r为的位串,c[MAX]中存放的是
发送的位串,d[17]中存放的CRC-16国际标准的生成多项式,e[16]中存放的是余数。 */
int i,m ;
scanf("%s",a);
m=strlen(a);
if(m>MAX-16)
{
printf("输入过多码元,请重新输入!\n");
scanf("%s",a);
m=strlen(a);
}
strcpy(a,b);
strcpy(a,c);
for(i=m;i<=m+16;i++) b[i]='0';
b[i]='\0';
m=strlen(b);
fun1(a,b,c,d,m); /* 用这个函数可以得到c这个字符数组 */
fun2(b,c,e,m); /*进行检测得到余数数组e */
for(i=0;i<16;i++)
{
if(e[i]!='0')
{
printf("码元在发送过程中出错!\n");
return 0;
}
}
printf("码元在发送过程中没有出错,这是可信的数据!\n");
return 0;
}