#include "stdafx.h" #include "mathtool.h" void bubble(int* a,int n) { int i,j; for(i=0;i<n;i++) { for(j=1;j<(n-i);j++) { if(a[j-1]>a[j]) SWAP(a[j-1],a[j]); } } }