由于
,当我输入值1,2,3,4,5时,我的代码没有显示第一遍这是我的代码:
#include<stdio.h>
int main()
{
int s,i,j,temp,a[20],count=0,x,n=0;
printf("Enter the number of elements :\n");
scanf("%d",&s);
for(i=0;i<s;i++)
{
printf("Enter element %d\n",i+1);
scanf("%d",&a[i]);
}
printf("Unsorted list is :\n");
for(i=0;i<s;i++)
{
printf("%d ",a[i]);
}
for(i=0;i<(s-1);i++)
{
count=0;
n++;
for(j=0;j<(s-i)-1;j++)
{
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
count++;
}
}
if(count<=0)
{
break;
}
else
{
printf("\nAfter Pass %d elements are :",n);
for(x=0;x<s;x++)
{
printf("%d ",a[x]);
}
}
}
printf("\nSorted list is :\n");
for(i=0;i<s;i++)
printf("%d ",a[i]);
return 0;
}
帮帮我们,你的建议和想法会非常感谢我。
答案 0 :(得分:0)
你的代码很好。为了确保打印每个传递,然后只需在循环开始时打印传递。此外,您不需要声明其他变量来跟踪传递。
for (i = 0; i < (s - 1); i++)
{
printf("\nAfter Pass %3d elements are: ", i);
for (j = 0; j < s; j++)
printf("%d ", a[j]);
count = 0;
for (j = 0; j < (s - i) - 1; j++)
{
if (a[j] > a[j + 1])
{
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
count++;
}
}
if (count == 0)
break;
}