C語言快排函式qsort()
阿新 • • 發佈:2019-01-06
原本以為C語言中的快排函式都要靠自己去實現,今天才知道,原來qsort就是C語言中的快排函式,包含在stdlib.h標頭檔案中,函式一共有四個引數,沒有返回值。
//int (*cmp)(const void *,const void *);
qsort(*s, n, sizeof(s[0]), cmp);
其中第一個引數s是一個地址,即參與排序的首地址;
n是需要排序的數量;
sizeof(s[0])則是每一個元素佔用的空間大小;
指向函式的指標,用於確定排序的順序。
簡單的說:對一個長為1000的陣列進行排序時,int a[1000];
qsort(a, 1000, sizeof(int), cmp);
//其中cmp函式應寫為:
int cmp(const void *a, const void *b)
{
return *(int*)a - *(int*)b; //由小到大排序
//return *(int *)b - *(int *)a; 由大到小排序
}
cmp函式的返回值,<0(不進行置換),>0(進行置換),0(不進行置換)。
首先,我們先來手動實現一下快排。
#include <stdio.h>
int a[100], n, temp;
void QuickSort(int h, int t)
{
if(h >= t)
return ;
int mid = (h + t) / 2, i = h, j = t, x;
x = a[mid];
while(1)
{
while(a[i] < x)
i++;
while(a[j] > x)
j--;
if(i >= j)
break;
temp = a[i];
a[i] = a[j];
a[j] = temp;
}
a[j] = x;
QuickSort(h, j - 1 );
QuickSort(j + 1, t);
return ;
}
int main()
{
int i;
scanf("%d", &n);
for(i = 0; i < n; i++)
scanf("%d", &a[i]);
QuickSort(0, n - 1);
for(i = 0; i < n; i++)
printf("%d ", a[i]);
return 0;
}
接著,是對int型陣列進行快排。
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int s[10000], n, i;
int cmp(const void *a, const void *b)
{
return (*(int *)a - *(int *)b);
}
int main()
{
scanf("%d", &n);
for(i = 0; i < n; i++)
scanf("%d", &s[i]);
qsort(s, n, sizeof(s[0]), cmp);
for(i = 0; i < n; i++)
printf("%d ", s[i]);
return 0;
}
double型。
#include <stdio.h>
#include <stdlib.h>
double s[1000];
int i, n;
int cmp(const void * a, const void * b)
{
return((*(double*)a - *(double*)b>0)?1:-1);
}
int main()
{
scanf("%d", &n);
for(i = 0; i < n; i++)
scanf("%lf", &s[i]);
qsort(s, n, sizeof(s[0]), cmp);
for(i = 0; i < n; i++)
printf("%lf ", s[i]);
return 0;
}
char型。
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char s[10000], i, n;
int cmp(const void *a,const void *b)
{
return (*(char *)a - *(char *)b);
}
int main()
{
scanf("%s", s);
n = strlen(s);
qsort(s, n, sizeof(s[0]), cmp);
printf("%s", s);
return(0);
}
struct型。
#include <stdio.h>
#include <stdlib.h>
struct node
{
double date1;
int no;
} s[100];
int i, n;
int cmp(const void *a,const void *b)
{
struct node *aa = (struct node *)a;
struct node *bb = (struct node *)b;
return (((aa->date1) > (bb->date1)) ? 1 : -1);
}
int main()
{
scanf("%d", &n);
for(i = 0; i < n; i++)
{
s[i].no = i + 1;
scanf("%lf", &s[i].date1);
}
qsort(s, n, sizeof(s[0]), cmp);
for(i = 0; i < n; i++)
printf("%d %lf\n", s[i].no, s[i].date1);
return(0);
}
對結構體排序,加入no來使其穩定(即data值相等的情況下按原來的順序排)。
#include <stdio.h>
#include <stdlib.h>
struct node
{
double date1;
int no;
} s[100];
int i, n;
int cmp(const void *a, const void *b)
{
struct node *aa = (struct node *)a;
struct node *bb = (struct node *)b;
if(aa->date1 != bb->date1)
return(((aa->date1) > (bb->date1)) ? 1 : -1);
else
return((aa->no) - (bb->no));
}
int main()
{
scanf("%d", &n);
for(i = 0; i < n; i++)
{
s[i].no = i + 1;
scanf("%lf", &s[i].date1);
}
qsort(s, n, sizeof(s[0]), cmp);
for(i = 0; i < n; i++)
printf("%d %lf\n", s[i].no, s[i].date1);
return 0;
}
對字串陣列的排序(char s[][]型)。
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char s[100][100];
int i, n;
int cmp(const void *a, const void *b)
{
return (strcmp((char*)a, (char*)b));
}
int main()
{
scanf("%d", &n);
for(i = 0; i < n; i++)
scanf("%s", s[i]);
qsort(s, n, sizeof(s[0]), cmp);
for(i = 0; i < n; i++)
printf("%s\n", s[i]);
return 0;
}
對字串陣列排序(char *s[]型)。
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char *s[100];
int i, n;
int cmp(const void *a, const void *b)
{
return (strcmp(*(char**)a, *(char**)b));
}
int main()
{
scanf("%d", &n);
for(i = 0; i < n; i++)
{
s[i] = (char*)malloc(sizeof(char*));
scanf("%s", s[i]);
}
qsort(s, n, sizeof(s[0]), cmp);
for(i = 0; i < n; i++)
printf("%s\n", s[i]);
return 0;
}
大致就這樣吧,收集了不少資料,看了不少部落格才總結在一起了。