标签:
// 2015_2_22insertsort.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
void InsertSort(int sort[],int n);
int main(int argc, char* argv[])
{
printf("Hello World!\n");
int arr[4]={3,2,1,4};
printf("数组长度%d\n",sizeof(arr)/sizeof(arr[0]));
InsertSort(arr,4);
for(int i=0;i<4;i++)
{
printf("%d",arr[i]);
}
printf("\n");
return 0;
}
void InsertSort(int sort[],int n)
{
int temp;
int j;
for(int i=1;i<n;i++)
{
temp=sort[i];
j=i-1;
while(j>=0 && temp<sort[j])
{
sort[j+1]=sort[j];
j--;
}
sort[j+1]=temp;//这里面赋值竟然是j+1
}
}
标签:
原文地址:http://www.cnblogs.com/Study02/p/5206682.html