递归倒置字符数组简便解法 摘要:n=list(input().split()) x=[] for i in n[1]: x.append(i) m=int(n[0])//2 a=0 b=int(n[0])-1 …… 题解列表 2023年03月31日 0 点赞 0 评论 76 浏览 评分:0.0
1575: 蓝桥杯算法提高VIP-递归倒置字符数组(真·递归解法) 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2023年03月24日 0 点赞 0 评论 58 浏览 评分:0.0
LikeWater - 1575: 蓝桥杯算法提高VIP-递归倒置字符数组C++(现在有课,暂时先把答案放这儿,大家先看看,有时间我补充解释说明) 摘要:```cpp #include using namespace std; int N; // 完成一个递归程序,倒置字符数组。并打印实现过程 // 递归逻辑为: // 当字符长度等于1时,…… 题解列表 2023年03月07日 0 点赞 1 评论 130 浏览 评分:9.9
递归解法 有图片有真相 详细 摘要:思路:先把输入的数存到char数组里,用toCharArray可以把字符串变成字符数组, 比如字符串:"abcd"会变成{'a','b','c','d}的char类型数组 在方法里面: ![](…… 题解列表 2023年02月13日 0 点赞 0 评论 395 浏览 评分:9.9
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:```cpp #include using namespace std; string zm; int n; void deal_rev(int a,int b) { if(a>…… 题解列表 2023年02月01日 0 点赞 0 评论 403 浏览 评分:9.9
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); char a[n]; char…… 题解列表 2022年09月05日 0 点赞 0 评论 112 浏览 评分:0.0
小南解题---递归倒置字符数组--67ms 摘要:'''2022年03月12日 15:19:20.799zgn946'''b,a=map(str,input().split())c=int(b)//2 …… 题解列表 2022年08月27日 0 点赞 1 评论 185 浏览 评分:6.0
小南解题--递归倒置字符数组-61ms 摘要:'''15:30 2022/5/27zgn946'''b,a=map(str,input().split())c=int(b)//2a=list(a)f…… 题解列表 2022年06月27日 0 点赞 0 评论 133 浏览 评分:0.0
蓝桥杯算法提高VIP-递归倒置字符数组(C++) 摘要:下面是我(一个小白)的代码,思路简单,欢迎采纳 ```cpp #include #include//调用string的头文件 using namespace std; string zm; …… 题解列表 2022年06月19日 0 点赞 0 评论 910 浏览 评分:8.7
递归倒置字符数组 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Sca…… 题解列表 2022年05月12日 0 点赞 0 评论 238 浏览 评分:9.9