7种qsort排序方法
摘要:
转自hdoj论坛七种qsort排序方法一、对int类型数组排序 int num[100]; Sample: int cmp ( const void *a , const void *b ) { return *(int *)a - *(int *)b; } qsort(num,100,sizeof(num[0]),cmp);二、对char类型数组排序(同int类型) char word[100]; Sample: int cmp( const void *a , const void *b ) { ret... 阅读全文
posted @ 2013-08-09 13:18 Junkie_AC 阅读(392) 评论(0) 推荐(0) 编辑