题解 1219: 数列排序

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

数列排序C++

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int a[1000000], b[1000000];int main(){ int n; ……

1219: 数列排序

摘要:```cpp #include #include #include using namespace std; int main() { std::ios::sync_with_s……

数列排序简单思路

摘要:解题思路:注意事项:参考代码:# include <iostream> using namespace std; int main() { int n; cin >> n; w……

题解 1219: 数列排序

摘要:### 解题思路 根据题目的输出格式, 输入的时候, 将比K1小的数存进栈(先进后出),将比K1大的数存进队列(先进先出); 输出的时候按照顺序输出栈里的元素、K1和队列里的元素 ### ……

数列排序(C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector> #include<cstdio> using namespace std; vector<……

数列排序 课堂笔记STL

摘要:解题思路:vector向量,动态数组;vectorv1.begin()选取第一个元素v1.clear()清除v1.push_back(x)表示在vector容器后面添加一个元素xv1.insert(v……

1219: 数列排序

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> #include<cmath> using namespace std; int n……

数列排序:堆栈

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int n;    int a[10];    sta……