摘要: ##11月13日 c语言自带的qsort #include<stdio.h> #include<stdlib.h> int comp(const void *a,const void *b)//用来做比较的函数。 { return *(int*)a-*(int*)b; } int main() { 阅读全文
posted @ 2023-01-30 11:48 藤君 阅读(81) 评论(0) 推荐(0) 编辑