题解 1169: 绝对值排序 摘要:参考代码:#include<stdio.h>#include<math.h>#define N 100void main(){ int i,j,k,s,t,temp,a[N][N]; f…… 题解列表 2021年11月10日 0 点赞 0 评论 155 浏览 评分:0.0
最简单的方法,我敢保证 摘要:解题思路:再重新搞一个数组b,b的位置要对应a的位置,b数组是a数组绝对值的翻版,所以用它来比较大小,这个答案在网页上错误50%,我也不懂,但是这个放在DEVC++上的结果是正确的,注意事项:参考代码…… 题解列表 2021年11月10日 0 点赞 0 评论 146 浏览 评分:0.0
C语言绝对值排序:冒泡排序+绝对值+时间超限的解决方法 摘要:解题思路:开两个数组,然后读一个数组的时候将它的绝对值给另一个数组,然后冒泡排序存绝对值的数组的时候同时对原来的数组进行排序注意事项:时间如果超限就要加个!=EOF参考代码:#include<stdi…… 题解列表 2021年12月14日 0 点赞 0 评论 894 浏览 评分:6.0
1169: 绝对值排序 摘要:C语言网刷题以来首次碰到用 pair 的题。#include<bits/stdc++.h> using namespace std; bool cmp(pair<int,int> &a,pa…… 题解列表 2021年12月17日 0 点赞 0 评论 141 浏览 评分:0.0
编写题解 1169: 绝对值排序 摘要:while True: a=list(map(int,input().split())) if a[0] == 0: break a = a[1:] …… 题解列表 2021年12月20日 0 点赞 0 评论 304 浏览 评分:8.0
绝对值排序 摘要:解题思路:冒泡排序注意事项:EOF参考代码:#include<stdio.h>void sort(int a[],int n);int main(){ int i,j,k,m,n,a[100];…… 题解列表 2022年01月14日 0 点赞 0 评论 147 浏览 评分:0.0
python 容易理解 摘要:解题思路:注意事项:参考代码:ls =list(map(int,input().split()))while ls[0] != 0: lt = ls[1:] b=[] for i i…… 题解列表 2022年01月27日 0 点赞 0 评论 156 浏览 评分:0.0
Hifipsysta-1169题-绝对值排序(C++代码)自定义排序规则法 摘要:基本思路: ① 设置排序规则,按照绝对值从大到小(见arrange_rule函数) ② 每扫描一行就把需要排序的元素全部装入向量vect ③ 采用algorithm库中的sort函数进行排序,使…… 题解列表 2022年02月01日 0 点赞 0 评论 212 浏览 评分:2.0
绝对值排序答案 摘要:解题思路:没思路注意事项:没注意事项参考代码:#include<stdio.h>int p(int a,int b){ int i,r,x,y; if (a<0) a=-a; …… 题解列表 2022年02月05日 0 点赞 0 评论 189 浏览 评分:8.0
绝对值排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string.h>#include<ctype.h…… 题解列表 2022年02月26日 0 点赞 0 评论 156 浏览 评分:0.0