程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 2013-2014 冒泡排序

2013-2014 冒泡排序

編輯:關於C語言

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
void swap(int *a,int i,int j)
{
   int temp = a[i];
   a[i] = a[j];
   a[j] = temp;   
};
void BubbleSort(int *a, int n)
{
   int i,j;
   bool flag = true;
   for(i=0;i<n-1&&flag;i++)
   {
      flag = false;
      for(j=n-2;j>=i;j--)
      {
         if(a[j]>a[j+1])
         {
           swap(a,j,j+1);
           flag = true;              
         }                  
      }                       
   }    
};
int main()
{
    int i = 0;
    int a[13] = {5,4,9,8,7,6,3,0,1,2,15,24,100};
    BubbleSort(a,13);
    for(;i<13;i++)
    {
        printf("%d  ",a[i]);             
    }
    printf("\n");
    system("pause");
    return 0;   
}


本文出自 “年少輕狂” 博客,請務必保留此出處http://shpshao.blog.51cto.com/1931202/1297431

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved