再Linux上使用vscode调试C代码时提示无法打开malloc.c文件

发布于 2022-09-11 18:46:11 字数 1404 浏览 11 评论 0

题目描述

使用“%20”替换一个字符创中的空格

相关代码

我的代码是这样子的

#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "malloc.h"
#define PLACESPACE "%20"
int main(void)
{
    char *replaceSpace(const char *str, int length);
    char *str = "This is test string!";
    char *newStr = NULL;
    newStr = replaceSpace(str, sizeof(str)); // 长度有EOF
    printf("%s\n", newStr);
    free(newStr);
    return 0;
}

char *replaceSpace(const char *str, int length)
{
    int spaceCount = 0; //空格总数
    // 记录空格
    while (*str != EOF)
    {
        // 遍历字符串字符
        if (*(str++) == ' ')
        {
            // 选择指针的位置再这里偏移
            spaceCount++;
        }
    }
    // 替换空格
    char *newStr = (char *)malloc(length + spaceCount*3); // 新字符串的存储位置
    newStr[0] = EOF;
    for (int i = 0; i < sizeof(newStr); i++)
    {
        // 循环,如果遇到空格便替换
        if (*str == ' ')
        {
            strcat(newStr, PLACESPACE);
            str++;
            i += 3;
            continue;
        }
        newStr[i] = *str;
        newStr[i + 1] = EOF;
        str++;
    }

    return newStr;
}

问题描述

VS就像是真样子报错
图片描述
gdb的描述是这样子的
图片描述

我不知道发生了什么,求解

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深爱不及久伴 2022-09-18 18:46:11

include "malloc.h" 改为 #include <malloc.h>

一直在等你来 2022-09-18 18:46:11

replaceSpace 中str指针在记录空格数后没有回恢复到字符串起始位置

建议:

const char *tmp = str;
// 记录空格
    while (*tmp != EOF)
    {
        // 遍历字符串字符
        if (*(tmp++) == ' ')
        {
            // 选择指针的位置再这里偏移
            spaceCount++;
        }
    }

新字符串分配的内存多了
// 替换空格
char newStr = (char )malloc(length + spaceCount*2); // 新字符串的存储位置

spaceCount*2 即可

Eg:
abc空格def空格g\0
替换后结果
abc%20def%20g\0

原来的一个字符变为三个,增加了两个,length中的长度包含原来的空格长度

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文