设为首页 加入收藏

TOP

数组的排列  冒泡法
2013-12-12 14:46:11 来源: 作者: 【 】 浏览:178
Tags:排列   冒泡

  下面我们就来看看C++中数组的排列 冒泡法的使用吧!

  #include

  using namespace std;

  //两个函数bubble_sort和output_array的声明

  void bubble_sort(int[], int);

  void output_array(int[],int);

  int main( )

  {

  int a[20]= {86,76,62,58,77,85,92,80,96,88,77,67,80,68,88,87,64,59,61,76};

  int b[15]= {27,61,49,88,4,20,28,31,42,62,64,14,88,27,73};

  bubble_sort(a,20); //用冒泡法按降序排序a中元素

  output_array(a,20);

  cout

  {

  t=sort[j+1];

  sort[j+1]=sort[j];

  sort[j]=t;

  }

  }

  void output_array(int sort[],int n)

  {

  for(int i=0; i

  心得体会:后面用冒泡法,还是很生疏,还得加强。

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇C++声明变量和New空间区别 下一篇获取电脑和平板物理地址

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·PostgreSQL 索引 - (2025-12-25 22:20:43)
·MySQL Node.js 连接 (2025-12-25 22:20:41)
·SQL 撤销索引、表以 (2025-12-25 22:20:38)
·Linux系统简介 (2025-12-25 21:55:25)
·Linux安装MySQL过程 (2025-12-25 21:55:22)