题解 1169: 绝对值排序

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

筛选

1169: 绝对值排序

摘要:解题思路:归并排序注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> using namespace std; con……

绝对值排序(水题)

摘要:```c #include #include int main(){ int n,a[101],i,j,t; while(~scanf("%d",&n)&&n!=0){//这里的结尾……

python 容易理解

摘要:解题思路:注意事项:参考代码:ls =list(map(int,input().split()))while ls[0] != 0:    lt = ls[1:]    b=[]    for i i……

绝对值排序

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool cmp(int a,int b){    return abs(a)>ab……