2019年4月17日 冒泡排序 和 选择排序

#include"1304head.h"#include<assert.h>usingnamespacestd;voidswap(int*a,int*b){assert(a!=NULL&&b!=NULL);//断言//if(a==NULL||b==NULL)return;inttemp=*a;*a=*b;...

猜你喜欢

转载自blog.csdn.net/weixin_43949535/article/details/89364876