题解 1219: 数列排序

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

筛选

1219: 数列排序

摘要:```python n = int(input()) for i in range(n): st1, st2 = '', '' lis = list(map(str, inpu……

数列排序-题解(C++代码)

摘要:解题思路:arr1代表上一组数组arr2代表用户输入的数组arr3代表取arr1的第0项生成的数组(也是我们应该输出的数组)swap交换arr1与arr3的内容,这样当前处理过的数据就会变成上一组数据……

数列排序 (C语言代码)

摘要:解题思路:用两个子数组分别保存大数和小数注意事项:打印小数数组时倒着打印参考代码:#include<stdio.h>int main(){ int N,num[9]; int i,less[9],bi……

编写题解 1219: 数列排序

摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n):     ls=list(map(int,input().split()))     t=ls[0……

数列排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:# include <stdio.h># include <malloc.h>void destroy (int **p , int n);int main (void)……

数列排序 (C语言代码)

摘要:解题思路: 使用stl的list很简单就可以实现。list可以实现链头插入,也可以实现链尾插入。注意事项:参考代码:#include <bits/stdc++.h> using namespace ……