题解 | #比较字符串大小#

比较字符串大小

https://www.nowcoder.com/practice/963e455fdf7c4a4a997160abedc1951b

#include <iostream>
using namespace std;

int mystrcmp(const char* src, const char* dst);

int main() {

    char s1[100] = { 0 };
    char s2[100] = { 0 };

    cin.getline(s1, sizeof(s1));
    cin.getline(s2, sizeof(s2));

    int ret = mystrcmp(s1, s2);

    cout << ret << endl;

    return 0;
}

int mystrcmp(const char* src, const char* dst) {

    // write your code here......
    int flag = 0;
    while(*src && *dst){
        if (*src > *dst){
            flag = 1;
            break;
        }
        else if (*src < *dst){
            flag = -1;
            break;
        }
        src++;
        dst++;
    }
    //如果出现一个字符先结束的情况,则进行进一步判断,是哪个字符串跳出
    if (flag == 0){
        if (*src){
            flag = 1;
        }
        else if (*dst) {
            flag = -1;
        }
    }
    return flag;
}

全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务