不用递归也能解出这题 摘要://完成一个递归程序,倒置字符数组。并打印实现过程 //递归逻辑为: //当字符长度等于1时,直接返回 //否则,调换首尾两个字符,在递归地倒置字符数组的剩下部分 //输出每一次倒置后的结果,…… 题解列表 2024年12月02日 0 点赞 1 评论 190 浏览 评分:9.9
不用多余变量完成 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void dg(int n, char* arr){ if (n - strlen(arr…… 题解列表 2024年03月07日 0 点赞 0 评论 150 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 思路奇妙哦!!! (OoO) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int j=0;void change(char *a,int n){ //n为数组的最大坐标 例a[5],…… 题解列表 2023年10月11日 1 点赞 0 评论 674 浏览 评分:9.9
递归倒置字符数组(c语言) 摘要:```c #include #include void reverse(char*, int, int); int main() { int n = 0; char str[100]…… 题解列表 2023年04月20日 1 点赞 0 评论 256 浏览 评分:7.0
题解 1575: 递归倒置字符数组----自用 摘要:解题思路:非递归方法注意事项:参考代码:#include<stdio.h> int main() { int n; char temp; char a[100]; …… 题解列表 2023年04月02日 0 点赞 0 评论 434 浏览 评分:8.4
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); char a[n]; char…… 题解列表 2022年09月05日 0 点赞 0 评论 112 浏览 评分:0.0
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void digui(char *str, int m, int n) { if(n <= m) {…… 题解列表 2022年04月18日 0 点赞 0 评论 82 浏览 评分:0.0
递归倒置字符数组 用for循环 摘要:#include <stdio.h> int main() { int n,t,j; char a[100]; scanf("%d%s",&n,&a); j=n-1; for(…… 题解列表 2022年04月06日 0 点赞 0 评论 226 浏览 评分:6.0
抄别人的,没读懂题目,收尾交换.中间倒序 摘要:#include <stdio.h> #include <string.h> void reverse(char* s, int L, int R){ if(L >= R) return…… 题解列表 2022年01月26日 0 点赞 0 评论 67 浏览 评分:0.0
递归倒置字符数组 摘要:解题思路:如题,定义函数并递归注意事项:这个代码是运行错误的,但答案一致,只供参考,请勿直接复制粘贴参考代码:#include<stdio.h>#include<string.h>char* reve…… 题解列表 2021年12月13日 0 点赞 0 评论 180 浏览 评分:0.0