Posted in 面试题 onJuly 08, 2016
void BubbleSort(elemtype x[],int n)
{
int i,j;
elemtype temp;
for(i=1;i
for(j=0;j
{
if(x[j].key>x[j+1].key)
{
temp=x[j];
x[j]=x[j+1];
x[j+1]=temp;
}
}
}
{
int i,j;
elemtype temp;
for(i=1;i
if(x[j].key>x[j+1].key)
{
temp=x[j];
x[j]=x[j+1];
x[j+1]=temp;
}
}
}
写出一个方法实现冒泡排序
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@