int main()
{
// 冒泡排序
int a[6] = {8, 9, 5, 3, 6, 7};
int count = sizeof(a) / sizeof(int);
int temp = 0;
for(int i = 0; i < count - 1; i++)
{
for(int j = 0; j < count - i - 1; j++)
{
if(a[j] < a[j + 1])
{
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
}
// 选择排序
int b[6] = {9, 7, 5, 12, 23, 42};
int k;
for(int i = 0; i < count - 1; i++)
{
k = i;
for(int j = i + 1; j < count; j++)
{
if(b[k] < b[j])
{
k = j;
}
}
if(k != i)
{
temp = b[k];
b[k] = b[i];
b[i] = temp;
}
}
// 打印冒泡排序结果
for(int k = 0; k < count; k++)
{
printf("%d ", a[k]);
}
printf("\n");
// 打印选择排序结果
for(int k = 0; k < count; k++)
{
printf("%d ", b[k]);
}
printf("\n");
return 0;
}
*/
|
|