數據結構-排序算法-交換排序-冒泡排序

//冒泡排序
void bubbleSort(int *a, int dataNum)
{
	for (int i=dataNum-1;i>=1;i--)
	{
		for (int j=0;j<i;j++)
		{
			if (a[j]>=a[j+1])
			{
				int temp = a[j + 1];
				a[j + 1] = a[j];
				a[j] = temp;
			}
		}
	}
}
相關文章
相關標籤/搜索