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

插入排序

时间:2019-06-14 00:42:55      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:class   return   插入排序   insert   sort   nbsp   ++   amp   pre   

 1 int[] insertionSort(int arr[]) {//插入排序
 2         int preIndex,current;
 3         for(int i = 1; i < arr.length; i++) {
 4             preIndex = i - 1;
 5             current = arr[i];
 6             while (preIndex >= 0 && arr[preIndex] > current) {
 7                 arr[preIndex + 1] = arr[preIndex];
 8                 preIndex--;
 9             }
10             arr[preIndex + 1] = current;
11         }
12         return arr;
13     }

 

插入排序

标签:class   return   插入排序   insert   sort   nbsp   ++   amp   pre   

原文地址:https://www.cnblogs.com/YUJIE666/p/11020523.html

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