题解 1169: 绝对值排序

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

筛选

1169: 绝对值排序

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

用sort函数解决问题

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

绝对值排序利用set容器

摘要:解题思路:去掉重复使用set容器注意事项:参考代码:# include <iostream> # include <set> # include <math.h> using namespace……

绝对值排序

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

1169: 绝对值排序

摘要:C语言网刷题以来首次碰到用 pair 的题。#include<bits/stdc++.h> using namespace std;   bool cmp(pair<int,int> &a,pa……

1169 绝对值排序(sort排序)

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