不用分奇偶也可以做,超简单 摘要:解题思路:注意事项:参考代码: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
递归倒置字符数组(递归求解C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;char a[10001];char search(char* p, int x, int y…… 题解列表 2022年04月01日 0 点赞 0 评论 196 浏览 评分:6.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
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void digui(char *str, int m, int n) { if(n <= m) {…… 题解列表 2022年04月18日 0 点赞 0 评论 82 浏览 评分:0.0
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:解题思路:注意事项:参考代码:t,string=map(str,input().split()) if t=='1': print() print(string)…… 题解列表 2022年04月22日 0 点赞 0 评论 158 浏览 评分:0.0
递归倒置字符数组 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Sca…… 题解列表 2022年05月12日 0 点赞 0 评论 239 浏览 评分:9.9
蓝桥杯算法提高VIP-递归倒置字符数组(C++) 摘要:下面是我(一个小白)的代码,思路简单,欢迎采纳 ```cpp #include #include//调用string的头文件 using namespace std; string zm; …… 题解列表 2022年06月19日 0 点赞 0 评论 910 浏览 评分:8.7
小南解题--递归倒置字符数组-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
小南解题---递归倒置字符数组--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
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); char a[n]; char…… 题解列表 2022年09月05日 0 点赞 0 评论 112 浏览 评分:0.0