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

C语言之直接插入排序

时间:2019-09-02 13:55:04      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:tle   排序   insert   rect   sort   tin   i++   printf   length   

#include void DirectInsertSort(int *Array,int ElementLength) { int i,j,temp,k; for(i = 1; i < ElementLength; i++) { temp = Array[i]; for(j = i -1 ; j >=0 && temp < Array[j]; j--) { Array[j+1] = Array[j]; } Array[j+1] = temp; for(k = 0; k < 5; k++) { printf("%d ",Array[k]); } printf("\r\n"); } } int main(void) { int k = 0; int Array[5] = {3,4,0,1,2}; DirectInsertSort(Array,5); }

C语言之直接插入排序

标签:tle   排序   insert   rect   sort   tin   i++   printf   length   

原文地址:https://www.cnblogs.com/HMM0530/p/11445704.html

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