已知函数 Fun19 的部分代码如下所示,其功能是将 s 所指字符串的正序 和反序进行连接,形成一个新串放在 t 所指的数组中,请在空格处补充程 序。例如:s 为ABCD时,则 t 为ABCDDCBA。程序思路
时间: 2024-05-21 10:11:35 浏览: 50
char* Fun19(char* s, char* t)
{
int len = strlen(s);
int i,j;
for(i=0; i<len; i++)
{
t[i] = s[i];
}
for(j=0; j<len; j++)
{
t[i+j] = s[len-j-1];
}
t[i+j] = '\0';
return t;
}
相关问题
已知函数 Fun19 的部分代码如下所示,其功能是将 s 所指字符串的正序 和反序进行连接,形成一个新串放在 t 所指的数组中,请在空格处补充程 序。例如:s 为ABCD时,则 t 为ABCDDCBA。
```c
void Fun19(char *s, char *t) {
int len = strlen(s);
for (int i = 0; i < len; i++) {
t[i] = s[i];
t[len * 2 - i - 1] = s[i];
}
t[len * 2] = '\0';
}
```
本关任务:给定程序中 fun 函数的功能是:将s所指字符串的正序和反序进行连接,形成一个新串放在t所指的数组中。
根据您的描述,我猜测您想让我来完成这个任务,下面是实现代码。
```c
#include <stdio.h>
#include <string.h>
void fun(char s[], char t[]) {
int len = strlen(s);
// 将s的正序拷贝到t中
strcpy(t, s);
// 将s的反序拼接到t的末尾
for (int i = len - 1; i >= 0; i--) {
t[len - i - 1 + len] = s[i];
}
// 在末尾添加字符串结束符
t[2 * len] = '\0';
}
int main() {
char s[] = "hello";
char t[2 * strlen(s) + 1];
fun(s, t);
printf("%s\n", t); // 输出 helloolleh
return 0;
}
```
在这个实现中,我们使用了 strcpy 函数将 s 的正序拷贝到 t 中,然后使用循环将 s 的反序拼接到 t 的末尾。最后在 t 的末尾添加字符串结束符,得到最终的结果。
阅读全文