数列排序(超时了,啊!!!) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n; cin>>n;int a[n][9], b…… 题解列表 2023年06月28日 0 点赞 0 评论 192 浏览 评分:9.9
数列排序python 摘要:解题思路:注意事项:比第一个数字小的在左边,大的在右边,但并没有排序参考代码:n = int(input())for i in range(n): L = list(map(int,input(…… 题解列表 2023年03月21日 0 点赞 0 评论 133 浏览 评分:9.9
1219: 数列排序 摘要:```cpp #include #include #include using namespace std; int main() { std::ios::sync_with_s…… 题解列表 2023年01月11日 0 点赞 0 评论 233 浏览 评分:9.9
数列排序简单思路 摘要:解题思路:注意事项:参考代码:# include <iostream> using namespace std; int main() { int n; cin >> n; w…… 题解列表 2022年10月16日 0 点赞 0 评论 60 浏览 评分:0.0
题解 1219: 数列排序 摘要:### 解题思路 根据题目的输出格式, 输入的时候, 将比K1小的数存进栈(先进后出),将比K1大的数存进队列(先进先出); 输出的时候按照顺序输出栈里的元素、K1和队列里的元素 ### …… 题解列表 2022年04月01日 0 点赞 0 评论 398 浏览 评分:9.9
题解 1219: 数列排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n; scanf("%d",&n); //几行数据 int …… 题解列表 2022年03月30日 0 点赞 0 评论 204 浏览 评分:0.0
编写题解 1219: 数列排序 摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n): ls=list(map(int,input().split())) t=ls[0…… 题解列表 2022年02月22日 0 点赞 0 评论 83 浏览 评分:0.0
数列排序(用容器比较快) 摘要:解题思路:注意事项:参考代码:#include<vector>#include<iostream>#include<string>#include<algorithm>#include<cmath>#…… 题解列表 2022年02月04日 0 点赞 0 评论 129 浏览 评分:0.0
1219: 数列排序 摘要:解题思路:观察输出,发现比第一位小的排序是靠右的排在前面,所以先从最后面开始遍历数组,找到比第一位小的就打印出来,然后再打印比第一位大的数参考代码:#include <stdio.h> int …… 题解列表 2022年01月17日 0 点赞 0 评论 507 浏览 评分:9.9
数列排序(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector> #include<cstdio> using namespace std; vector<…… 题解列表 2021年12月12日 0 点赞 0 评论 223 浏览 评分:0.0