码迷,mamicode.com
首页 > 编程语言 > 详细

《大话数据结构》读书笔记——9.3冒泡排序

时间:2015-04-15 22:56:51      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

//C 实现
1
#include "stdafx.h" 2 #include "stdlib.h" 3 4 void swap(int* a,int* b) 5 { 6 int t =*a; 7 *a = *b; 8 *b = t; 9 } 10 int _tmain(int argc, _TCHAR* argv[]) 11 { 12 int arr[6] ={0,5,3,4,6,2}; 13 int i,j; 14 for(i=0;i<6;i++) 15 { 16 for(j = 5;j > i;j--) 17 { 18 if(arr[j]<arr[j-1]) 19 { 20 swap(&arr[j],&arr[j-1]); 21 } 22 } 23 } 24 for(int i =0 ;i<6;++i) 25 { 26 printf("%d\t",arr[i]); 27 } 28 system("pause"); 29 return 0; 30 }

 

《大话数据结构》读书笔记——9.3冒泡排序

标签:

原文地址:http://www.cnblogs.com/nightcatcher/p/4430273.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!