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

直接插入排序算法

編輯:關於C語言

#include "stdafx.h" 
#include <iostream> 
using namespace std; 
 
 //直接插入排序算法(升序) 
 void InsertSort(int a[], int n) 
 { 
    int i,j,temp; 
 
    //從第二個元素開始,往前面的已經排序的序列插入,插入n-1次 
    for (i=1; i<n; i++) 
    { 
        //需要插入排序的元素 
        temp = a[i]; 
        for (j=i-1; j>=0 && temp < a[j]; j--) 
        { 
            a[j+1] = a[j]; 
        } 
        a[j+1] = temp; 
    } 
 } 
 
 //輸出數組  www.2cto.com
 void Print_Arry(int a[], int n) 
 { 
     for (int i=0; i<n; i++) 
     { 
        cout<< a[i]<<" "; 
     } 
     cout<<endl; 
 } 
 
int _tmain(int argc, _TCHAR* argv[]) 

    int a[9] = {7,3,5,8,9,1,2,4,6}; 
    InsertSort(a, 9); 
    Print_Arry(a, 9); 
    return 0; 


摘自 學無止境

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