经典冒泡排序存档
程序员文章站
2022-06-16 09:24:40
...
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <signal.h>
#include <stdlib.h>
static void bubble_sort(int sort[], int Length)
{
for (int i = 0; i < Length; i++)
{
for (int j = i; j < Length; j++)
{
if (sort[i] > sort[j])
{
int temp = sort[i];
sort[i] = sort[j];
sort[j] = temp;
}
}
}
}
int main()
{
int sort[] = {3,5,8,1,4,1,9};
bubble_sort(sort, 7);
int i=0;
for(;i<7;i++)
{
printf("%d\t",sort[i]);
}
}
上一篇: 除了点击某个元素外,其他都执行某事件
下一篇: 优化后的冒泡