这题的描述有毛病:结尾有空格才对,没有空格会报错。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 21int uf(long b[],int m,int n){ int t; if(m<n/2){ t=b[m]; …… 题解列表 2021年11月13日 0 点赞 0 评论 305 浏览 评分:0.0
蓝桥杯算法提高VIP-逆序排列-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { int…… 题解列表 2020年02月08日 0 点赞 0 评论 515 浏览 评分:0.0
蓝桥杯算法提高VIP-逆序排列 (C++代码) 摘要:解题思路:list是比较容易被忽略的数据结构,但是其实作用很大注意事项:参考代码:#include <iostream> #include <stdio.h> #include <list> #…… 题解列表 2018年12月20日 0 点赞 0 评论 516 浏览 评分:0.0
1931简单数组 摘要:解题思路:遇0跳出注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,a[250],i=0; while…… 题解列表 2022年07月29日 0 点赞 0 评论 100 浏览 评分:0.0
蓝桥杯算法提高VIP-逆序排列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string>#include<algorithm>#include<cstring>#include<iostrea…… 题解列表 2019年03月19日 0 点赞 0 评论 342 浏览 评分:0.0
蓝桥杯算法提高VIP-逆序排列-题解(C++代码) 摘要:``` #include #include using namespace std; int a[25]; bool cmp(int l,int r){return l>r;};…… 题解列表 2020年07月18日 0 点赞 0 评论 317 浏览 评分:0.0
蓝桥杯算法提高VIP-逆序排列-题解(Java代码) 摘要: **for的基本使用** **以下为代码** ```java public static void main(String[] args) { Scanner sc=ne…… 题解列表 2019年11月26日 0 点赞 0 评论 637 浏览 评分:0.0
1931: 蓝桥杯算法提高VIP-逆序排列 摘要:解题思路:注意事项:参考代码:l=list(map(int,input().split())) for i in l[:-1][::-1]: print(i,end=' '…… 题解列表 2022年01月30日 0 点赞 0 评论 199 浏览 评分:0.0
蓝桥杯算法提高VIP-逆序排列-题解(Java代码) 摘要:```java import java.util.ArrayList; import java.util.Collections; import java.util.Scanner; publ…… 题解列表 2021年01月25日 0 点赞 0 评论 196 浏览 评分:0.0
蓝桥杯算法提高VIP-逆序排列-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n; int p[20]; int i=0; …… 题解列表 2020年04月02日 0 点赞 0 评论 387 浏览 评分:0.0