/************************************************************/ /* 两多项式多项式相减 */ /* 函数格式:Polyn AddPolyn(Polyn h1,Polyn h2) */ /* 功 能:实现两个多项式的相减运算 */ /* 参 数:Polyn h1--第一个多项式的链表头指针 */ /* Polyn h2--第二个多项式的链表头指针 */ /* 返 回 值:结果多项式的链表头指针 */ /************************************************************/ Polyn SubtractPolyn(Polyn h1,Polyn h2) { int flag; Item *head,*last,*pa=h1-next,*pb=h2-next,*s; double coef; CreateItem(head); last=head; last=head; head-next=NULL; s=NULL; while(papb) {if(pa-expn==pb-expn) { coef=pa-coef-pb-coef; if(coef!=0.0) { CreateItem(s); s-next=NULL; s-coef=coef; s-expn=pa-expn; } pa=pa-next; pb=pb-next; } else if(pa-expnpb-expn) { CreateItem(s); s-next=NULL; s-coef=pa-coef; s-expn=pa-expn; pa=pa-next; } else { CreateItem(s); s-next=NULL; s-coef=0.0-pb-coef; s-expn=pb-expn; pb=pb-next; } if(head-next==NULL) { head-next=s; last=s; } else { last-next=s; last=s; } } while(!pa||!pb) { if(!papb) { CreateItem(s); s-next=NULL; s-coef=0.0-pb-coef; s-expn=pb-expn; pb=pb-next; } else if(pa!pb) { CreateItem(s); s-next=NULL; s-coef=pa-coef; s-expn=pa-expn; pa=pa-next; } else break; last-next=s; last=s; } return head; }
“只有客户发展了,才有我们的生存与发展!”这是创新互联的服务宗旨!把网站当作互联网产品,产品思维更注重全局思维、需求分析和迭代思维,在网站建设中就是为了建设一个不仅审美在线,而且实用性极高的网站。创新互联对成都网站设计、网站制作、网站制作、网站开发、网页设计、网站优化、网络推广、探索永无止境。
在C语言中实现减法比较简单,直接相减就可以了:
int a = 1;
int b = 2;
int c = b - a;
这里可以看到此时c的值为1,按此方法在c语言中的直接将两个数相减就可以了。
#include stdio.h
int strat( char *s, char c )
{
while ( *s )
{
if ( *s==c )
return 1;
s++;
}
return 0;
}
char *strsub( char *s, char *q)
{
char *t=s,*new_s=s;
while ( *t )
{
if ( !strat( q, *t) )
*new_s++ = *t ;
t++;
}
*new_s='\0';
return s;
}
void main()
{
char str1[]="abcdefg";
char str2[]="abc" ;
char *p=strsub( str1,str2);
printf("%s\n", p );
}
(1) C语言中没有 字符串相减 运算。
(2) C语言中 有 单个字符 相减 运算。
例如,把字符串"1234"里的各个数字字符转成整型,存入整型数组:
int i,x[4];
char str[]="1234";
for (i=0;i4;i++) x[i] = str[i] - '0';
例如, 把字符串中字母,小写变大写:
char str[]="aBcxYz";
int i;
for (i=0;istrlen(str);i++)
if (str[i] ='a' str[i] ='z') str[i] = str[i] -'a' + 'A';
(3) 字符串大小比较 用 strcmp() 或 strncmp() 函数
例如:
if (strcmp(a,b) == 0) printf(" string a and b are the same\n");
if (strcmp(a,b) 0) printf(" string a is bigger than b\n");