优质题解
1219: 数列排序 (C语言代码) 双数组简单思路
摘要:解题思路:空间换时间,用两个数组分别记录比第一个输入的数小的和大的元素首先输入一个数,接下来输入八个数,比第一个数小的放进数组 A ,比第一个数大的放进 B 数组输出的时候先遍历输出数组 A ,再输出……
1219: 数列排序
摘要:```python
n = int(input())
for i in range(n):
st1, st2 = '', ''
lis = list(map(str, inpu……
1219: 数列排序
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;
int n……
数列排序 课堂笔记STL
摘要:解题思路:vector向量,动态数组;vectorv1.begin()选取第一个元素v1.clear()清除v1.push_back(x)表示在vector容器后面添加一个元素xv1.insert(v……
1219: 数列排序
摘要:解题思路:观察输出,发现比第一位小的排序是靠右的排在前面,所以先从最后面开始遍历数组,找到比第一位小的就打印出来,然后再打印比第一位大的数参考代码:#include <stdio.h>
int ……
数列排序(用容器比较快)
摘要:解题思路:注意事项:参考代码:#include<vector>#include<iostream>#include<string>#include<algorithm>#include<cmath>#……
编写题解 1219: 数列排序
摘要:解题思路:注意事项:参考代码:n=int(input())
for i in range(n):
ls=list(map(int,input().split()))
t=ls[0……