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

C語言排序系列之插入排序(1)

編輯:關於C語言

插入排序是最簡單最粗暴的排序方式,其基本思想是:對於已經有序的前i-1個數字,將第i個數字插入至合適位置
    時間復雜度為:O(n^2)
   
 
/*插入排序
  時間復雜度:O(n^2)
*/

#include<stdio.h>

void Swap(int *a,int *b)
{
    int temp;
    temp = *a;
    *a = *b;
    *b = temp;
}

void InsertSort(int data[],int length)
{
    int i = 0;
    int j = 0;
    for(i = 1;i < length;++i)
    {
        for(j = i;j > 0;--j)
        {
            if(data[j] < data[j - 1])
            {
                Swap(&data[j], &data[j - 1]);
            }
            else
            {
                break;
            }
        }
    }
}

int main()
{
    int data[8] = {4,7,2,6,5,9,3,8};
    int i = 0;
    InsertSort(data,8);
    for(i = 0;i < 8;i++)
    {
        printf("%d ",data[i]);
    }
    printf("\n");
    getchar();
    return 0;
}

 

 

摘自 泡泡騰

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