gpt4 book ai didi

c++ - 如何在 C++ 中进行反向字符复制

转载 作者:行者123 更新时间:2023-11-28 00:12:07 25 4
gpt4 key购买 nike

大家好,我的反向复制方法有些问题。该方法需要反向复制 char*。

char* reverseCopy(char* destination, const char* source, int num)
{
char placeHolder;
for (int j=0; j<=num; j++)
{
strcpy(destination,source);
}

for (int i=0; i<num; num--)
{
placeHolder = destination[num];
destination[i]=placeHolder;
}
destination[num]='\0';
return destination;
}

目标是存储拷贝的位置。

来源是复制的字符

Num是数组中的字符个数

任何见解都值得赞赏。谢谢

最佳答案

使用 standard library algorithm 会作弊吗? ?

char* reverseCopy(char* destination, const char* source, int num)
{
std::reverse_copy(source, source + num, destination);
destination[num] = '\0';
return destination;
}

关于c++ - 如何在 C++ 中进行反向字符复制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32487933/

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