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

冒泡排序,前面几个没有排序

时间:2019-10-17 13:34:09      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:span   cout   template   index   src   i++   冒泡排序   tchar   getchar   

 1 #include "stdafx.h"
 2 #include <iostream>
 3 using namespace std;
 4 template<typename T>
 5 //整数或浮点数皆可使用
 6 void bubble_sort(T arr[], int len,int index=0)
 7 {
 8     int i, j;  T temp;
 9     for (i = 0; i < len - 1; i++)
10         for (j = index; j < len - 1 - i; j++)
11             if (arr[j] < arr[j + 1])
12             {
13                 temp = arr[j];
14                 arr[j] = arr[j + 1];
15                 arr[j + 1] = temp;
16             }
17 }
18 int main()
19 {
20     int arr[] = { 61, 17, 29, 22, 34, 60, 72, 21, 50, 1, 62 };
21     int len = (int) sizeof(arr) / sizeof(*arr);
22     bubble_sort(arr, len);
23     for (int i = 0; i < len; i++)
24         cout << arr[i] <<  ;
25 
26     cout << endl;
27 
28     float arrf[] = { 17.5, 19.1, 0.6, 1.9, 10.5, 12.4, 3.8, 19.7, 1.5, 25.4, 28.6, 4.4, 23.8, 5.4 };
29     int len = (int) sizeof(arrf) / sizeof(*arrf);
30     bubble_sort(arrf, len,3);
31     for (int i = 0; i < len; i++)
32         cout << arrf[i] <<  ;
33 
34     getchar();
35     return 0;
36 }

技术图片

 

冒泡排序,前面几个没有排序

标签:span   cout   template   index   src   i++   冒泡排序   tchar   getchar   

原文地址:https://www.cnblogs.com/leochan007/p/11691445.html

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