标签:
对于一个int数组,请编写一个冒泡排序算法,对数组元素排序。
给定一个int数组A及数组的大小n,请返回排序后的数组。
class BubbleSort { public: int* bubbleSort(int* A, int n) { // write code here bool flag=true; for(int i=0;i<n && flag;++i) { for(int j=n-1;j>i;--j) { if(A[j]<A[j-1]) { int temp=A[j]; A[j]=A[j-1]; A[j-1]=temp; flag=true; } } } return A; } };
标签:
原文地址:http://blog.csdn.net/geekmanong/article/details/50808377