@AquariusGX

QQ:651572770 加我请注明来意。 twitter: @aquariusgx

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2011年2月17日

摘要: #include <stdio.h> int main() { int array[] = {3, 4, 2, 6, 3, 7, 3, 8, 5}; int i, j, temp, num; num = sizeof(array) / 4; /* BubbleSort */ for (i = 1; i < num; i++) { for (j = 0; j < num-i; j++) { if (array[j] > array[j+1]) { temp = array[j]; array[j] = array[j+1]; 阅读全文
posted @ 2011-02-17 23:04 aquariusgx 阅读(257) 评论(0) 推荐(0) 编辑