字符串反序

题目

Snipaste_2021-08-15_19-10-35

题目来源:桂林理工 - 878-数据结构及程序设计 - 2015年 - 第十题

我的笨方法

解题关键代码

1
2
3
4
5
6
7
8
void reverseChar(char ch[], int len){
char temp;
for(int i=0;i<len/2;i++){
temp = ch[i];
ch[i] = ch[len-1-i];
ch[len-1-i] = temp;
}
}

完整代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stdio.h>
#include <string.h>
void reverseChar(char ch[], int len){
char temp;
for(int i=0;i<len/2;i++){
temp = ch[i];
ch[i] = ch[len-1-i];
ch[len-1-i] = temp;
}
}

main(){
char ch[20];
int len;
printf("请输入原字符串:");
scanf("%s",ch);
len = strlen(ch);
printf("原字符串为:%s,长度为:%d\n",ch,len);

reverseChar(ch, len);

printf("反序后的字符串为:");
printf("%s",ch);
}

运行结果

Snipaste_2021-08-15_19-03-41