题解 1219: 数列排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n; scanf("%d",&n); //几行数据 int …… 题解列表 2022年03月30日 0 点赞 0 评论 210 浏览 评分:0.0
题解 1219: 数列排序 摘要:### 解题思路 根据题目的输出格式, 输入的时候, 将比K1小的数存进栈(先进后出),将比K1大的数存进队列(先进先出); 输出的时候按照顺序输出栈里的元素、K1和队列里的元素 ### …… 题解列表 2022年04月01日 0 点赞 0 评论 402 浏览 评分:9.9
数列排序简单思路 摘要:解题思路:注意事项:参考代码:# include <iostream> using namespace std; int main() { int n; cin >> n; w…… 题解列表 2022年10月16日 0 点赞 0 评论 63 浏览 评分:0.0
1219: 数列排序 摘要:```cpp #include #include #include using namespace std; int main() { std::ios::sync_with_s…… 题解列表 2023年01月11日 0 点赞 0 评论 239 浏览 评分:9.9
数列排序python 摘要:解题思路:注意事项:比第一个数字小的在左边,大的在右边,但并没有排序参考代码:n = int(input())for i in range(n): L = list(map(int,input(…… 题解列表 2023年03月21日 0 点赞 0 评论 140 浏览 评分:9.9
数列排序(超时了,啊!!!) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n; cin>>n;int a[n][9], b…… 题解列表 2023年06月28日 0 点赞 0 评论 200 浏览 评分:9.9
数列排序C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[1000][9],i,j,n,b,m,h,y[1000][9]; scanf("%d",&n); …… 题解列表 2023年11月26日 0 点赞 0 评论 104 浏览 评分:0.0
数列排序(python) 摘要:解题思路:注意事项:参考代码:n=int(input())for _ in range(n): nums=list(map(int,input().split())) left=[] …… 题解列表 2023年12月18日 0 点赞 0 评论 78 浏览 评分:0.0
c代码记录之数列排序--水题 摘要: #include int main() { int i,j,n,a[9]; scanf("%d",&n); for(i…… 题解列表 2024年01月04日 0 点赞 0 评论 150 浏览 评分:0.0
数列排序C++ 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int a[1000000], b[1000000];int main(){ int n; …… 题解列表 2024年01月29日 0 点赞 0 评论 114 浏览 评分:9.9