引自 qsort,包含在stdlib.h頭文件里,函數(shù)一共四個參數(shù),沒返回值.一個典型的qsort的寫法如下
創(chuàng)新互聯(lián)公司于2013年成立,是專業(yè)互聯(lián)網(wǎng)技術服務公司,擁有項目成都做網(wǎng)站、成都網(wǎng)站制作網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元薩爾圖做網(wǎng)站,已為上家服務,為薩爾圖各地企業(yè)和個人服務,聯(lián)系電話:13518219792
qsort(s,n,sizeof(s[0]),cmp);
其中第一個參數(shù)是參與排序的數(shù)組名(或者也可以理解成開始排序的地址,因為可以寫s[i]
這樣的表達式,這個問題下面有說明); 第二個參數(shù)是參與排序的元素個數(shù); 第三個三數(shù)是
單個元素的大小,推薦使用sizeof(s[0])這樣的表達式,下面也有說明 :) ;第四個參數(shù)就是
很多人覺得非常困惑的比較函數(shù)啦,關于這個函數(shù),還要說的比較麻煩...
我們來討論cmp這個比較函數(shù)(寫成cmp是我的個人喜好,你可以隨便寫成什么,比如qcmp什么
的).典型的cmp的定義是
int cmp(const void *a,const void *b);
返回值必須是int,兩個參數(shù)的類型必須都是const void *,那個a,b是我隨便寫的,個人喜好.
假設是對int排序的話,如果是升序,那么就是如果a比b大返回一個正值,小則負值,相等返回
0,其他的依次類推,后面有例子來說明對不同的類型如何進行排序.
在函數(shù)體內(nèi)要對a,b進行強制類型轉換后才能得到正確的返回值,不同的類型有不同的處理
方法.具體情況請參考后面的例子.
/*----------------------------------------------------------------------------*/
** 關于快排的一些小問題 **
1.快排是不穩(wěn)定的,這個不穩(wěn)定一個表現(xiàn)在其使用的時間是不確定的,最好情況(O(n))和最
壞情況(O(n^2))差距太大,我們一般說的O(nlog(n))都是指的是其平均時間.
2.快排是不穩(wěn)定的,這個不穩(wěn)定表現(xiàn)在如果相同的比較元素,可能順序不一樣,假設我們有
這樣一個序列,3,3,3,但是這三個3是有區(qū)別的,我們標記為3a,3b,3c,快排后的結果不一定
就是3a,3b,3c這樣的排列,所以在某些特定場合我們要用結構體來使其穩(wěn)定(No.6的例子就
是說明這個問題的)
3.快排的比較函數(shù)的兩個參數(shù)必須都是const void *的,這個要特別注意,寫a和b只是我的
個人喜好,寫成cmp也只是我的個人喜好.推薦在cmp里面重新定義兩個指針來強制類型轉換,
特別是在對結構體進行排序的時候
4.快排qsort的第三個參數(shù),那個sizeof,推薦是使用sizeof(s[0])這樣,特別是對結構體,
往往自己定義2*sizeof(int)這樣的會出問題,用sizeof(s[0)既方便又保險
5.如果要對數(shù)組進行部分排序,比如對一個s[n]的數(shù)組排列其從s[i]開始的m個元素,只需要
在第一個和第二個參數(shù)上進行一些修改:qsort(s[i],m,sizeof(s[i]),cmp);
/*----------------------------------------------------------------------------*/
** 標程,舉例說明 **
No.1.手工實現(xiàn)QuickSort
#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[mid]=a[j];
a[j]=x;
QuickSort(h,j-1);
QuickSort(j+1,t);
return;
}
int main()
{
int i;
scanf("%d",n);
for(i=0;in;i++) scanf("%d",a[i]);
QuickSort(0,n-1);
for(i=0;in;i++) printf("%d ",a[i]);
return(0);
}
No.2.最常見的,對int數(shù)組排序
#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;in;i++) scanf("%d",s[i]);
qsort(s,n,sizeof(s[0]),cmp);
for(i=0;in;i++) printf("%d ",s[i]);
return(0);
}
No.3.對double型數(shù)組排序,原理同int
這里做個注釋,本來是因為要判斷如果a==b返回0的,但是嚴格來說,兩個double數(shù)是不可能相等的,只能說fabs(a-b)1e-20之類的這樣來判斷,所以這里只返回了1和-1
#include stdio.h
#include stdlib.h
double s[1000];
int i,n;
int cmp(const void * a, const void * b)
{
return((*(double*)a-*(double*)b0)?1:-1);
}
int main()
{
scanf("%d",n);
for(i=0;in;i++) scanf("%lf",s[i]);
qsort(s,n,sizeof(s[0]),cmp);
for(i=0;in;i++) printf("%lf ",s[i]);
return(0);
}
No.4.對一個字符數(shù)組排序.原理同int
#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);
}
No.5.對結構體排序
注釋一下.很多時候我們都會對結構體排序,比如校賽預選賽的那個櫻花,一般這個時候都在
cmp函數(shù)里面先強制轉換了類型,不要在return里面轉,我也說不清為什么,但是這樣程序會
更清晰,并且絕對是沒錯的. 這里同樣請注意double返回0的問題
#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=(node *)a;
struct node *bb=(node *)b;
return(((aa-date1)(bb-date1))?1:-1);
}
int main()
{
scanf("%d",n);
for(i=0;in;i++)
{
s[i].no=i+1;
scanf("%lf",s[i].date1);
}
qsort(s,n,sizeof(s[0]),cmp);
for(i=0;in;i++) printf("%d %lf\n",s[i].no,s[i].date1);
return(0);
}
No.6.對結構體排序.加入no來使其穩(wěn)定(即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=(node *)a;
struct node *bb=(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;in;i++)
{
s[i].no=i+1;
scanf("%lf",s[i].date1);
}
qsort(s,n,sizeof(s[0]),cmp);
for(i=0;in;i++) printf("%d %lf\n",s[i].no,s[i].date1);
return(0);
}
No.7.對字符串數(shù)組的排序(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;in;i++) scanf("%s",s[i]);
qsort(s,n,sizeof(s[0]),cmp);
for(i=0;in;i++) printf("%s\n",s[i]);
return(0);
}
No.8.對字符串數(shù)組排序(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;in;i++)
{
s[i]=(char*)malloc(sizeof(char*));
scanf("%s",s[i]);
}
qsort(s,n,sizeof(s[0]),cmp);
for(i=0;in;i++) printf("%s\n",s[i]);
return(0);
}
1、cmp 是 compare,比較的縮寫。
2、strcmp是C語言中頭文件string.h(字符串函數(shù))中定義的一個用于對兩組字符串進行比較的函數(shù),它的返回值是int類型。
假設有兩組字符串cs和ct,當csct時,函數(shù)返回一個負數(shù);當cs==ct時,函數(shù)返回0;當csct時,函數(shù)返回一個正數(shù)。
即:兩個字符串自左向右逐個字符相比(按ASCII值大小相比較),直到出現(xiàn)不同的字符或遇'\0'為止。如:"A""B" ,"a""A" ,"computer""compare" ,"comput""comp"
strcmp函數(shù)原型為:int strcmp(const char *s1,const char * s2);
代碼如下:
#include?stdio.h
#include?stdlib.h
int?func(int?x,?int?y)
{
if?(x??y)?{
return?1;
}
else?if?(x??y)?{
return?-1;
}
else?{
return?0;
}
}
int?main()
{
int?x,?y,?ret;
printf("請輸入x,y的值:");
scanf("%d%d",?x,?y);
ret?=?func(x,?y);
printf("%d\n",?ret);
system("pause");
return?0;
}
運行結果:
你好,這是你對strcmp函數(shù)理解錯誤了。其原型是: extern int strcmp(const char *s1,const char * s2); 其功能是比較字符串s1與字符串s2,在C語言中,返回值有下面的規(guī)則得到:當S1S2時,返回值為1 而在C++中,返回值是按照下面的規(guī)律得到:當S1S2時,返回值大于0 而對S1與S2的比較是按照ASCII碼進行比較的,即:兩個字符串自左向右逐個字符相比(按ASCII值大小相比較),直到出現(xiàn)不同的字符或遇'\0'為止。如: "A""A" "computer""compare" 而你輸入的是apple與banana,當然是banana大于apple 希望對你有幫助
本文標題:cmp函數(shù)c語言 cmp函數(shù)的用法
文章源于:http://aaarwkj.com/article8/doodcop.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供自適應網(wǎng)站、商城網(wǎng)站、動態(tài)網(wǎng)站、定制網(wǎng)站、手機網(wǎng)站建設、企業(yè)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)