标签:style blog http color 使用 文件 ar div
1 intcomp(const void *a,const void *b) 2 { 3 return*(int*)a-*(int*)b; 4 }
1 qsort(a,1000,sizeof(int)*2,comp); 2 3 int comp(const void *a,const void *b) 4 5 { 6 return(*(int*)a)[0]-(*(int*)b)[0]; 7 }
qsort()与besearch(),布布扣,bubuko.com
标签:style blog http color 使用 文件 ar div
原文地址:http://www.cnblogs.com/sage-blog/p/3896764.html