博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
对数组进行冒泡排序
阅读量:5368 次
发布时间:2019-06-15

本文共 334 字,大约阅读时间需要 1 分钟。

C code:

1  //对数组a[MAX]进行冒泡排序 2  void BubbleSort(int a[]) 3 { 4      int temp = 0;    //临时变量  5      int i = 0;   6      for (i=0; i
a[i+1]) 9 {10 temp = a[i];11 a[i] = a[i+1];12 a[i+1] = temp;13 }14 }15 }

 

转载于:https://www.cnblogs.com/nemowang1996/p/6534523.html

你可能感兴趣的文章
代理网站
查看>>
Open multiple excel files in WebBrowser, only the last one gets activated
查看>>
FFmpeg进行视频帧提取&音频重采样-Process.waitFor()引发的阻塞超时
查看>>
最近邻与K近邻算法思想
查看>>
【VS开发】ATL辅助COM组件开发
查看>>
FlatBuffers In Android
查看>>
《演说之禅》I & II 读书笔记
查看>>
thinkphp3.2接入支付宝支付接口(PC端)
查看>>
【转】在Eclipse中安装和使用TFS插件
查看>>
C#中Monitor和Lock以及区别
查看>>
【NOIP2017】奶酪
查看>>
5.6.3.7 localeCompare() 方法
查看>>
Linux下好用的简单实用命令
查看>>
描绘应用程序级的信息
查看>>
php环境搭建脚本
查看>>
php 编译常见错误
查看>>
MES架构
查看>>
hdu 2767(tarjan)
查看>>
sklearn之分类模型混淆矩阵和分类报告
查看>>
MySQL各存储引擎
查看>>