资源简介

冒泡排序的动态显示过程,C语言实现

资源截图

代码片段和文件信息

#include
#include
#include
#include
#include
#define timespan 500


int main()
{

two:;
BubbleSort();
rewind(stdin);
getchar();
goto two;
return 0;
}
int swap(int *xint *y)
{
int temp;
if (*x > *y) { temp = *x *x = *y *y = temp; }
return 0;
}

int Gotoxy(int x int y)
{
HANDLE handle;
COORD coord;
coord.X = x;
coord.Y = y;
handle = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(handle coord);
}

void clr_row(int xint y)
{
for (int i = 0; i < 50; i++)
{
printf(“ “);
}
Gotoxy(x y);
}
void currentpic(int index)
{
Gotoxy(0index);
printf(“\16“);
Sleep(timespan);
}
void clr_currentpic(int index)
{
Gotoxy(0 index);
printf(“ “);
}
void putpic(int s

评论

共有 条评论