06 2016 档案
利用c自带的快排序 杭电 acm 1040
摘要:#include<stdio.h>#include<stdlib.h>#include<string.h> #define SIZE 100 //从小到大排序int comp1(const void *x,const void *y){ return *(int *)x - *(int *)y;} 阅读全文
posted @ 2016-06-04 14:05 HDU李少帅 阅读(788) 评论(1) 推荐(1)