当前位置: 代码迷 >> 综合 >> 1994-字符串比较
  详细解决方案

1994-字符串比较

热度:95   发布时间:2023-12-29 15:32:54.0

【C系列5.9】指针专题之字符串比较 1994

Time Limit:  1 s      Memory Limit:   32 MB
Submission:121     AC:65     Score:19.16

 

Description

Alex想要写一函数,实现两个字符串的比较。即自己写一个strcmp函数,函数原型为:

                 int stremp(char *p1,char *p2)

设p1指向字符串s1,p2指向字符串s2。要求:当s1=s2时,返回值为0。当s1不等于s2时,返回它们二者的第一个不同字符的ASCII码差值(如“BOY”与“BAD”,第二字母不同,“O”与“A”之差为79-65=14);如果s1>s2,则输出正值;如果s1<s2,则输出负值。

Input

输入含多组测试数据,每组测试数据为两个只包含字母的字符串s1、s2,每个字符串长度不超过100,s1与s2字符串长度相等。

Output

当s1=s2时,输出0。当s1不等于s2时,输出它们二者的第一个不同字符的ASCII码差值。

Samples

input:
Abcd
Abgh
output:
-4
Show after trying 4 times:
input:
ajshdsj
sfdjfhdj
abcdf
abcdf
abcde
abcdf
abcde
abcdc
aaaaa
a aaaa
aaabb b
bbbaaa
a
b
output:
-18
0
-1
2
0
-1
-1



下附AC代码:
#include <stdio.h>
int strcmp(char *p1, char *p2);
int main() {char str1[101], str2[101], *p1, *p2;while (gets(str1) != NULL) {gets(str2);p1 = &str1[0];p2 = &str2[0];int m = strcmp(p1, p2);printf("%d\n", m);}return 0;
}
int strcmp(char *p1, char *p2) {for (; *p1 == *p2; p1++, p2++)if ('\0' == *p1)return 0;return *p1 - *p2;
}


原题链接:http://acm.hznu.edu.cn/OJ/problem.php?cid=1092&pid=27