我正在尝试用C编写冒泡排序排序算法进行练习和修改,但是,我遇到了一些问题:我试图在20个随机数的数组中每次迭代后打印每个交换,但是,程序似乎出于某种原因摆脱比之前项目更大的物品。
这是代码:
int i, j, temp;
int SortData[20]= {20, 43, 90, 17, 2, 4, 67, 54, 0, 44, 78, 89, 21, 45, 72,
88, 65, 100, 97, 25};
for(i=0; i<20; i++)
{
printf("|%d", SortData[i]);
}
printf("|");
printf("\n");
for (i=0; i<19; i++)
{
for(j=0;j<18;j++){
if(SortData[j]>SortData[j+1])
{
temp = SortData[j];
SortData[j]=SortData[j+1];
SortData[j+1]=temp;
printf("|%d", SortData[j]);
}
}
printf("\n");
}
printf("\n");
system("pause");
return 0;
以下是运行此代码时会发生的情况:
|20|43|90|17|2|4|67|54|0|44|78|89|21|45|72|88|65|100|97|25|
|17|2|4|67|54|0|44|78|89|21|45|72|88|65|97
|17|2|4|54|0|44|21|45|72|88|65
|17|2|4|0|44|21|45|72|65
|2|4|0|21|45|65
|0|21|45|65
|0|21|65
|0|21
|0
Process returned 10 (0xA) execution time : 3.072 s
Press any key to continue.
此外,我运行了一些测试来检查数组的排序或打印中是否存在错误,以下是该测试的结果:
int i, j, temp;
int SortData[20]= {20, 43, 90, 17, 2, 4, 67, 54, 0, 44, 78, 89, 21, 45, 72,
88, 65, 100, 97, 25};
for(i=0; i<20; i++)
{
printf("|%d", SortData[i]);
}
printf("|");
printf("\n");
for (i=0; i<19; i++)
{
for(j=0;j<18;j++){
if(SortData[j]>SortData[j+1])
{
temp = SortData[j];
SortData[j]=SortData[j+1];
SortData[j+1]=temp;
}
}
}
for (i=0; i<20; i++){
printf("|%d", SortData[i]);//Error here as 25 isn't sorted
}
printf("|");
printf("\n");
system("pause");
return 0;
上面这个片段的唯一变化是打印语句来自嵌套for循环并使用单独的for循环打印,这种工作,因为数字是排序的,但出于某种原因25不是:
|20|43|90|17|2|4|67|54|0|44|78|89|21|45|72|88|65|100|97|25|
|0|2|4|17|20|21|43|44|45|54|65|67|72|78|88|89|90|97|100|25|
Press any key to continue . . .
事实证明,排序和打印存在问题。请问有关如何打印交换的每次迭代并使其正确交换的一些提示?
更新:
所以我在嵌套for循环中增加了循环计数器,现在它对数组进行排序并显示每次迭代。以下是更改后的代码:
int i, j, temp;
int SortData[20]= {20, 43, 90, 17, 2, 4, 67, 54, 0, 44, 78, 89, 21, 45, 72, 88, 65, 100, 97, 25};
for(i=0; i<20; i++)
{
printf("|%d", SortData[i]);
}
printf("|");
printf("\n");
for (i=0; i<20; i++)
{
for(j=0;j<19;j++){
if(SortData[j]>SortData[j+1])
{
temp = SortData[j];
SortData[j]=SortData[j+1];
SortData[j+1]=temp;
}
printf("|%d", SortData[j]);//Changed code
}
printf("\n");
}
//for (i=0; i<20; i++){
// printf("|%d", SortData[i]);//Error here as 25 isn't sorted
//}
printf("|");
printf("\n");
system("pause");
return 0;
现在它显示每次迭代,并对其进行排序,但由于某种原因,数字100从数组中消失,因此它只排序19项而不是20项:
|20|43|90|17|2|4|67|54|0|44|78|89|21|45|72|88|65|100|97|25|
|20|43|17|2|4|67|54|0|44|78|89|21|45|72|88|65|90|97|25
|20|17|2|4|43|54|0|44|67|78|21|45|72|88|65|89|90|25|97
|17|2|4|20|43|0|44|54|67|21|45|72|78|65|88|89|25|90|97
|2|4|17|20|0|43|44|54|21|45|67|72|65|78|88|25|89|90|97
|2|4|17|0|20|43|44|21|45|54|67|65|72|78|25|88|89|90|97
|2|4|0|17|20|43|21|44|45|54|65|67|72|25|78|88|89|90|97
|2|0|4|17|20|21|43|44|45|54|65|67|25|72|78|88|89|90|97
|0|2|4|17|20|21|43|44|45|54|65|25|67|72|78|88|89|90|97
|0|2|4|17|20|21|43|44|45|54|25|65|67|72|78|88|89|90|97
|0|2|4|17|20|21|43|44|45|25|54|65|67|72|78|88|89|90|97
|0|2|4|17|20|21|43|44|25|45|54|65|67|72|78|88|89|90|97
|0|2|4|17|20|21|43|25|44|45|54|65|67|72|78|88|89|90|97
|0|2|4|17|20|21|25|43|44|45|54|65|67|72|78|88|89|90|97
|0|2|4|17|20|21|25|43|44|45|54|65|67|72|78|88|89|90|97
|0|2|4|17|20|21|25|43|44|45|54|65|67|72|78|88|89|90|97
|0|2|4|17|20|21|25|43|44|45|54|65|67|72|78|88|89|90|97
|0|2|4|17|20|21|25|43|44|45|54|65|67|72|78|88|89|90|97
|0|2|4|17|20|21|25|43|44|45|54|65|67|72|78|88|89|90|97
|0|2|4|17|20|21|25|43|44|45|54|65|67|72|78|88|89|90|97
|0|2|4|17|20|21|25|43|44|45|54|65|67|72|78|88|89|90|97
|
Press any key to continue . . .
为什么100会消失?
这很完美,你做了一点错误:
int i, j, temp;
int SortData[20]= {20, 43, 90, 17, 2, 4, 67, 54, 0, 44, 78, 89, 21, 45, 72, 88, 65, 100, 97, 25};
for(i=0; i<20; i++)
{
printf("|%d", SortData[i]);
}
printf("|");
printf("\n");
//before for(i=0; i<19; i++)
for (i=0; i<20; i++)// i < 20 or it will skip the last number
{
//before for(j=0; j<18; j++)
for(j=0;j<19;j++){
if(SortData[j]>SortData[j+1])
{
temp = SortData[j];
SortData[j]=SortData[j+1];
SortData[j+1]=temp;
}
}
}
for (i=0; i<20; i++){
printf("|%d", SortData[i]);
}
printf("|");
printf("\n");
return 0;
如果要打印气泡排序的每个迭代,这是代码:
int i, j, temp, h;
int SortData[20]= {20, 43, 90, 17, 2, 4, 67, 54, 0, 44, 78, 89, 21, 45, 72, 88, 65, 100, 97, 25};
for(i=0; i<20; i++)
{
printf("|%d", SortData[i]);
}
printf("|");
printf("\n");
for (i=0; i<20; i++)
{
for(j=0;j<19;j++){
if(SortData[j]>SortData[j+1])
{
temp = SortData[j];
SortData[j]=SortData[j+1];
SortData[j+1]=temp;
for (h=0; h<20; h++)
{
printf("|%d", SortData[h]);
}
printf("|");
printf("\n");
}
}
}
return 0;
}
在您输入的代码段的第11行,您只使用前19条记录进行排序。将此代码设置为20并解决。
我评论我修复的线。
提示:可能您刚开始进行软件开发,对于这种情况,学习如何使用调试会很有趣。
int i, j, temp;
int SortData[20]= {20, 43, 90, 17, 2, 4, 67, 54, 0, 44, 78, 89, 21, 45, 72,
88, 65, 100, 97, 25};
for(i=0; i<20; i++)
{
printf("|%d", SortData[i]);
}
printf("|");
printf("\n");
// before > for (i=0; i<19; i++)
for (i=0; i<20; i++)
{
// before > for(j=0;j<18;j++){
for(j=0;j<19;j++){
if(SortData[j]>SortData[j+1])
{
temp = SortData[j];
SortData[j]=SortData[j+1];
SortData[j+1]=temp;
}
}
}
for (i=0; i<20; i++){
printf("|%d", SortData[i]);//Error here as 25 isn't sorted
}
printf("|");
printf("\n");
system("pause");
return 0;
当你使用for循环时,你只是跳过最后一个数字。为i <20而不是i <19运行你的for循环,因为它在排序时跳过了最后一个数字。