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

排序算法,集合!

时间:2016-04-08 06:22:44      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

1.插入排序

 1 #include<iostream>
 2 #include<string.h>
 3 using namespace std;
 4 
 5 void InsertSort(int a[])
 6 {
 7     //运行不正确
 8     //由于下面 获取数组长度出错!!!
 9     int n = sizeof(a)/sizeof(int);
10     int temp;
11     for(int i=1; i<=n; i++){
12         for(int j=0; j<i; j++){
13             if(a[j]>a[i]){
14                 temp = a[i];
15                 a[i] = a[j];
16                 a[j] = temp;
17             }
18         }
19     }
20     for(int i=0; i<n; i++){
21         cout << a[i] << " ";
22     }
23 }
24 
25 int main(){
26     int a[8] = {3,1,5,7,2,4,9,6};
27     InsertSort(a);
28 }

 

排序算法,集合!

标签:

原文地址:http://www.cnblogs.com/lixiaopengcc/p/5366278.html

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