首页 > 学院 > 开发设计 > 正文

快排排多个数据

2019-11-11 05:42:03
字体:
来源:转载
供稿:网友
#include<stdio.h>#include<stdlib.h>typedef struct node{    int w;    int p;}sss;sss x[10001];int comp(const void *a,const void *b){    sss *x =(sss *)a;    sss *y =(sss *)b;    if(x->w == y->w)        return y->p - x->p;    else        return x->w - y->w;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表