题解 | #字符串变形#

字符串变形

https://www.nowcoder.com/practice/c3120c1c1bc44ad986259c0cf0f0b80e

char* trans(char* ms, int n ) {

/*以下为将ms进行大小写翻转后存入s*/
    char* str = malloc(n);
    char* s = calloc(0, n+2);
    *s='\0';
    s++;
    *s=' ';
    s++;
    strcpy(s,ms);
    
    memset(str, 0, n + 1);

    int m = 'a' - 'A';
    while (*s != '\0') {
        if (*s >= 'a' && *s != ' ') {
            *s = *s - m;
        } else if (*s != ' ') {
            *s += m;
        }
        s++;
    }

/*以下为s从后往前按照空格进行拆分后填入str中*/
    s--;
    int i = 0;
    while (*s != '\0') {
        while (*s != ' ') {
            i++;
            s--;
        }
        s++;
        strncpy(str, s, i);
        strcat(str, " ");
        str += i + 1;
        s -= 2;
        i = 0;
    }
    str--;
    *str='\0';
    str -= n;
    return str;
}

全部评论

相关推荐

我已成为0offer的糕手:别惯着,胆子都是练出来的,这里认怂了,那以后被裁应届被拖工资还敢抗争?
点赞 评论 收藏
分享
粗心的雪碧不放弃:纯学历问题,我这几个月也是一直优化自己的简历,后来发现优化到我自己都觉得牛逼的时候,发现面试数量也没有提升,真就纯学历问题
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务