gpt4 book ai didi

c++ - 在不复制的情况下修剪字符串的开始

转载 作者:太空宇宙 更新时间:2023-11-04 01:48:00 25 4
gpt4 key购买 nike

我设法让我的家庭作业开始工作,但它不应该工作,因为我还没有完成它。我不知道为什么会这样。我需要帮助。

#include<iostream>
using namespace std;

char* trim(char* str) {
const int lenStr = strlen(str);
int characters = 0;
bool trimmableFront = false;
int firstChar;

//check if trimmableFront + location of first char
for (int i = 0; i < lenStr; i++) {
if (*(str + i) != ' ') {
if (characters == 0)
firstChar = i;
characters++;
}
if (characters == 0) {
trimmableFront = true;
}
}

//trim Front //THIS PART SHOULD BEHAVE DIFFERENTLY
if (trimmableFront) {
for (int i = 0; i < lenStr; i++) {
if((firstChar + i <= lenStr))
*(str + i) = *(str + firstChar + i);
}
}
return str;
}


int main() {

char str[] = " why does it work?";
trim(str);
cout<< str <<endl;
return 0;
}

在 trim(*char) 函数的末尾,修剪后的字符串应该还有之前位置的剩余部分。由于某种原因,它被完美地修剪并按预期打印“为什么它有效?”但它应该打印类似“为什么它有效?”的内容

最佳答案

之所以有效,是因为当您通过移动每个字符来修剪字符串时,您也会移动终止空字符 '\0'。正如您可能知道的那样,c 字符串是由 '\0' 终止的字符数组,因此当您使用 cout 打印 str 时,所有字符都会被打印出来直到达到 null 值:即不打印剩菜的方式。

关于c++ - 在不复制的情况下修剪字符串的开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49638296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com