1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:解题思路:注意事项:参考代码:t,string=map(str,input().split()) if t=='1': print() print(string)…… 题解列表 2022年04月22日 0 点赞 0 评论 158 浏览 评分: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
递归倒置字符数组(递归求解C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;char a[10001];char search(char* p, int x, int y…… 题解列表 2022年04月01日 0 点赞 0 评论 195 浏览 评分:6.0
不用分奇偶也可以做,超简单 摘要:解题思路:注意事项:参考代码:a,b=input().split() a=int(a) b=list(b) for i in range(a//2): if i!=(a-i-1): …… 题解列表 2022年03月29日 0 点赞 0 评论 486 浏览 评分:9.9
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要://从中间开始循环就行!!#include<iostream>#include<string>using namespace std;string a;int n,i=0;void digui(int…… 题解列表 2022年03月14日 0 点赞 0 评论 85 浏览 评分:0.0
编写题解 1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:解题思路:注意事项:参考代码://// Created by ch'li'sen on 2022/3/8.//#include<iostream>using namespace std…… 题解列表 2022年03月10日 0 点赞 0 评论 99 浏览 评分:0.0
1575 递归倒置字符数组 java 摘要:- 代码 ```java import java.util.ArrayList; import java.util.Scanner; public …… 题解列表 2022年03月03日 0 点赞 0 评论 225 浏览 评分:0.0
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int i=0; char s[8000]; void f(int n) { …… 题解列表 2022年02月19日 0 点赞 0 评论 71 浏览 评分: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 评论 66 浏览 评分:0.0