冒泡排序 (局部有序优化) 与 选择排序
#include <stdio.h>
#include <stdlib.h>
int a[7] = {4,2,3,1,6,7,8};
int b[7] = {4,2,3,1,6,7,8};
void Bubble_Sort(int *a,int len)
{
for(int end = len-1 ; end > 0 ; end--)
{
int sortIndex = 1;
for(int begin = 1 ; begin <= end ; begin
原创
2022-02-25 11:41:15 ·
746 阅读 ·
0 评论