【绝对值排序】-题解(Java代码) 摘要:利用冒泡排序简单实现: ```java import java.util.Scanner; public class Sort1 { public static void main(Stri…… 题解列表 2020年02月11日 0 点赞 0 评论 270 浏览 评分:0.0
绝对值排序-题解(C++代码) 摘要:#include <queue>#include<cmath>#include <iostream>using namespace std;struct cmp{ bool operator()…… 题解列表 2020年08月26日 0 点赞 0 评论 277 浏览 评分:0.0
【绝对值排序】 (C语言代码) 摘要:#include "stdafx.h"#include "math.h"#include "time.h"void sort(int n,int a[]) { int low = 0; int hig…… 题解列表 2018年11月01日 0 点赞 0 评论 709 浏览 评分:0.0
【绝对值排序】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(void){ int i, j, n, max, y; int num[100];…… 题解列表 2017年12月01日 0 点赞 0 评论 615 浏览 评分:0.0
1169: 绝对值排序 摘要:解题思路:归并排序注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> using namespace std; con…… 题解列表 2024年09月04日 0 点赞 0 评论 73 浏览 评分:0.0
绝对值排序-题解(Python代码) 摘要:参考代码:ls = [int(i) for i in input().split()] while ls[0] != 0: lt = ls[1:] lt.sort(key = l…… 题解列表 2021年01月23日 0 点赞 0 评论 233 浏览 评分:0.0
【绝对值排序】 (C语言代码)(无敌简单) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,i,j,t; int a[100]; while(~scanf("%…… 题解列表 2019年03月14日 0 点赞 1 评论 282 浏览 评分:0.0
绝对值排序(水题) 摘要:```c #include #include int main(){ int n,a[101],i,j,t; while(~scanf("%d",&n)&&n!=0){//这里的结尾…… 题解列表 2023年01月19日 0 点赞 0 评论 69 浏览 评分: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 评论 151 浏览 评分:0.0
绝对值排序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool cmp(int a,int b){ return abs(a)>ab…… 题解列表 2024年03月03日 0 点赞 0 评论 92 浏览 评分:0.0