数据结构之冒泡排序的实现(C语言)

#include 
void BubbleSort(int *a, int len)
{
	int count,i,j,temp;
   for (count=0;countcount;i--)//不断比较和交换相邻的两个数
	   {
		   if (a[i]

你可能感兴趣的:(数据结构)