摘要: 1 $(function(){ 2 var arr=[3,0,1,8,7,2,5,4,6,9]; 3 var result=insert_sort(arr); 4 console.log(result); 5 }) 6 function insert_sort(arr){ 7 for(var i=0;i=1&&arr[j-1]>temp){ //内循环11 arr[j]=arr[j-1];12 arr[j-1]=temp;13 j--;14 }15 }16 ... 阅读全文
posted @ 2014-03-19 15:40 Western Journey 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 冒泡排序:http://t.cn/hrf58M希尔排序:http://t.cn/hrosvb选择排序:http://t.cn/hros6e 插入排序:http://t.cn/hros0W快速排序:http://t.cn/ScTA1d归并排序:http://t.cn/Sc1cGZ 阅读全文
posted @ 2014-03-19 15:33 Western Journey 阅读(134) 评论(0) 推荐(0) 编辑