蓝桥杯算法提高VIP-递归倒置字符数组-题解(Java代码) 摘要:参考代码:import java.util.*; public class Main_递归倒置字符数组 { public static StringBuilder s = new StringB…… 题解列表 2020年10月16日 0 点赞 0 评论 307 浏览 评分:0.0
蓝桥杯算法提高VIP-递归倒置字符数组-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#include <iostream>using namespace std;char daozhi(char a[],in…… 题解列表 2020年12月01日 0 点赞 0 评论 359 浏览 评分:0.0
编写题解 1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:解题思路:注意事项:参考代码://// Created by ch'li'sen on 2022/3/8.//#include<iostream>using namespace std…… 题解列表 2022年03月10日 0 点赞 0 评论 156 浏览 评分:0.0
蓝桥杯算法提高VIP-递归倒置字符数组-题解(Python代码) 摘要:```python def fun(n,s): if n != len(s): #显示当前转换的过程 print(''.join(s)) …… 题解列表 2020年03月09日 0 点赞 0 评论 616 浏览 评分:0.0
这个题细节很多,wa了很多次 摘要:#include<bits/stdc++.h> using namespace std; int main() { int n; string s; cin>>n>…… 题解列表 2024年08月08日 0 点赞 0 评论 198 浏览 评分:0.0
1575 递归倒置字符数组 java 摘要:- 代码 ```java import java.util.ArrayList; import java.util.Scanner; public …… 题解列表 2022年03月03日 0 点赞 0 评论 311 浏览 评分:0.0
不用多余变量完成 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void dg(int n, char* arr){ if (n - strlen(arr…… 题解列表 2024年03月07日 1 点赞 0 评论 283 浏览 评分:0.0
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int i=0; char s[8000]; void f(int n) { …… 题解列表 2022年02月19日 0 点赞 0 评论 123 浏览 评分:0.0
蓝桥杯算法提高VIP-递归倒置字符数组 递归 摘要:#include<iostream> using namespace std; int fun(int n,char a[],int num,int ziro){ if(n<=1) retu…… 题解列表 2021年04月11日 0 点赞 0 评论 147 浏览 评分:0.0
抄别人的,没读懂题目,收尾交换.中间倒序 摘要:#include <stdio.h> #include <string.h> void reverse(char* s, int L, int R){ if(L >= R) return…… 题解列表 2022年01月26日 0 点赞 0 评论 116 浏览 评分:0.0